注:# 和「文字」之间建议保留一个字符的空格,这是最标准的 Markdown 写法。
更多内容请参考献给写作者的 Markdown 新手指南、Markdown——入门指南
标题
用法:["#(数目)+空格+内容"]
一级标题
二级标题
三级标题
列表
用法:["-或*"]
- 文本1
- 文本2
链接和图片
引用
用法:[">+空格+内容"]
名言
心若不死,梦想不止
粗体
用法:[**粗体**][*斜体*]
粗体-斜体
表格
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
用法:
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
代码
用法:[`code`]
import os
import time
class new(object):
name = 'hello'
#注释
def getName(self):
return self.name