美文网首页
Learn Markdown

Learn Markdown

作者: Qingzh | 来源:发表于2015-04-02 11:27 被阅读0次
  • 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

<div class="footer">
    &copy; 2004 Foo Corporation
</div>

<pre><code>tell application "Foo"
beep
end tell
</code></pre>


This is an example reference-style link.


  • END

相关文章

  • learn markdown

    This is a header.This is the first list item.This is the ...

  • learn markdown

    1.标题 标题一 标题二 一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 2.列表 无序列表1 无序列...

  • learn MarkDown

    简历
    Markdown 从入门到精通 导语 markdwon是一种轻量的标记语言...

  • Learn Markdown

    这些只是一些简单的,基本上够用了;忘记了随时过来查。 编辑图片大小直接更改最后一个数字即可

  • Learn Markdown

    Similar with wiki syntax The difference Quote: '>' to quo...

  • learn Markdown

    一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 无序列表 文本 文本 文本 有序列表 文本 文本 文本...

  • Learn markdown

    h1 h2 *li*li

  • Learn Markdown

    这是标题 标题的另一种写法 二级标题 使用#时有六个级别 One Two Three Four Five Six ...

  • Learn Markdown

    这是一个

    这是一个

    这是一个

    这是一个

    这是一个

    这是一个
  • markdown

    let's learn markdown second head blablabla so this is 123...

网友评论

      本文标题:Learn Markdown

      本文链接:https://www.haomeiwen.com/subject/deboxttx.html