Markdown常用语法

标题的使用

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

列表

  • 无序列表1
  • 无需列表2
  • 无序列表3

有序列表

  1. 有序列表1
  2. 有序列表2
  3. 有序列表3
  4. 有序列表4

链接和图片

  • 百度
  • github

图片

引用

没有付出代价轻易得到的东西都不懂得珍惜
黑夜给了我黑色的眼睛,我却用它寻找光明

诗的引用

床前明月光
疑是地上霜
举头望明月
低头思故乡

粗体和斜体

既然许下给你一世的承诺,就请完成好吗?

代码引用

console.log('hello');

多段代码的引用

`

class contextManager(object):
"""docstring for contextManager"""
def __init__(self, filename,mode):
    self.fp=open(filename,mode)

def __enter__(self):
    return self.fp

    def __exit__(self, exc_type, exc_val, exc_tb):
           self.fp.close()

`

表格

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

表格2

dog bird cat
foo foo foo
bar bar bar
baz baz baz

你可能感兴趣的:(Markdown常用语法)