掌握Markdown翻译(Mastering Markdown)(4)
语法简易指南
这里概述了Markdown的语法,你可以应用于github.com网站或者你自己的文本文件中。
标题
用
#表示,多个#可以表示多级标题。# This is an <h1> tag ## This is an <h2> tag ###### This is an <h6> tag强调
用
*或者_包围的部分表示斜体,用两个*包围的部分表示粗体,二者也可以混合使用。*This text will be italic* _This will also be italic_ **This text will be bold** __This will also be bold__ _You **can** combine them_列表
无序列表
* Item 1 * Item 2 * Item 2a * Item 2b有序列表
1. Item 1 1. Item 2 1. Item 3 1. Item 3a 1. Item 3b
图片
 Format: 网页链接
http://github.com - automatic! [GitHub](http://github.com)引用
As Kanye West said: > We're living the future so > the present is our past.内联代码
I think you should use an `<addr>` element here instead.
=====================================================
掌握Markdown翻译(Mastering Markdown)(1)