Learn Markdown

  • Similar with wiki syntax
  • The difference
  1. Quote: '>' to quote
  2. Hyperlink: '[link text](link url)'
  3. Image Link: '!' before Hyperlink '![Image text](image url)'
  4. Code: '`code text`'
  • Can we
  • Format:
  1. '*italic*': italic
  2. '**strong**': strong
  3. '***': cut-off

Sample

  • Quote:

Quoted Text
Quoted Text

Double-quoted Text

  • HyperLink
    GitHub
  • Code:
    import urllib2

quoted textquoted text
quoted textquoted text
quoted textquoted text

def calculation_time(is_debug):
    def run_func(func):
        def func_wrapper(*args, **kwargs):
            if is_debug:
                begin = time()
                func(*args, **kwargs)
                logging.info( "\n  Function [{}] finished in {:.10f}s".format(func.__name__, time() - begin))
            else:
                func(*args, **kwargs)
        return func_wrapper
    return run_func



tell application "Foo"
beep
end tell


This is an example reference-style link.


  • END

你可能感兴趣的:(Learn Markdown)