Markdown是一套简洁可读性极好的标记语言,非常适合用来写作。
阿里云开发者社区支持标准语法和GFM语法,本页面只列出了大概语法,更详细的文档可以参考:
http://daringfireball.net/projects/markdown/syntax
https://help.github.com/articles/github-flavored-markdown
http://jianshu.io/p/q81RER
一. 标题
一级标题
二级标题
……
六级标题
二. 引用
\> A man who stands for nothing will fall for anything.
三.文字加粗、斜体、删除(GFM)
**bold** text, \_\_bold\_\_ text
bold text, bold text
*italic* text, \_italic\_ text
italic text, italic text
三.删除文本
\~~删除文本~~删除文本
四. 链接
[this is a link](http://name.com)
this is a link
五. 图片
支持直接截图粘贴到编辑器里。
六. 列表
- item1
- item2
- item1
- item2
- item1
- item2
七. 表格(GFM)
| foo | bar |
| --- | --- |
| yep | nop |
foo | bar |
---|---|
yep | nop |
八. 代码
\`console.log(1)\`console.log(1)
九. 代码块(GFM)(支持语法高亮)
\```
function fn() {
alert(2)
}
\```
function fn() {
alert(2)
}