markdown是什么
markdown是一种轻量级标记语言,常用作文字排版 (>注释标志符)
优点
- 易读/易写/易改
- 跨平台使用(win / mac / linux等)
- 其他网站和软件都支持Markdown(一线互联网公司,对代码友好)
- 能够导出HTML,PDF,等格式文件
- 摆脱Word
缺点
- 需要学习语法(但其实很少)
代码高亮
灵魂之处:代码高亮
// java代码
public static void main(String args[]){
System.out.print(''hello, world'')
}
// python 代码
print('hello, world')
// SQL代码
select 'hello, world'
// shell注释
echo 'hello, world'
超链接与图片
example:
这是一个超链接(网址)