下載
https://www./i89dreb
密碼:mark
由于藍(lán)奏云限制,上傳的是zip,解壓后就是*.md文件了
引用
MarkDown語法說明(中文版)
MarkDown語法快速入門
1.段落,、標(biāo)題,、區(qū)塊代碼
Atx 形式在行首插入 1 到 6 個 # ,對應(yīng)到標(biāo)題 1 到 6 階,。
區(qū)塊引用則使用 email 形式的 '>' 角括號,。
Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.
The quick brown fox jumped over the lazy
dog's back.
This is a blockquote.
This is the second paragraph in the blockquote.
This is an H2 in a blockquote
2. 修辭和強(qiáng)調(diào)
Markdown 使用星號和底線來標(biāo)記需要強(qiáng)調(diào)的區(qū)段。
Some of these words are emphasized.
Some of these words are emphasized also.
Use two asterisks for strong emphasis.
Or, if you prefer, use two underscores instead.
3. 列表
無序列表使用星號,、加號和減號來做為列表的項目標(biāo)記,,這些符號是都可以使用的,,使用星號:
- Red
- Green
- Blue
4. 鏈接
Markdown 支援兩種形式的鏈接語法: 行內(nèi) 和 參考 兩種形式,兩種都是使用角括號來把文字轉(zhuǎn)成連結(jié),。
This is an example link.
This is an example link.
//參考形式的鏈接讓你可以為鏈接定一個名稱,,之后你可以在文件的其他地方定義該鏈接的內(nèi)容:
I get 10 times more traffic from Google than from
Yahoo or MSN.
//title 屬性是選擇性的,,鏈接名稱可以用字母,、數(shù)字和空格,但是不分大小寫:
I start my morning with a cup of coffee and
The New York Times.
5. 圖片
圖片的語法和鏈接很像
//行內(nèi)形式(title 是選擇性的):
![Title alt text](/path/to/img.jpg)
//參考
![Title alt text](/path/to/img.jpg)
6. 代碼
使用`代碼`,或者換行后用4個空格或一個制表符分開.
<blockquote>
<p>For example.</p>
</blockquote>
I strongly recommend against using any <blink> tags.
I wish SmartyPants used named entities like —
instead of decimal-encoded entites like — .
If you want your page to validate under XHTML 1.0 Strict,
you've got to put paragraph tags in your blockquotes:
<blockquote>
<p>For example.</p>
</blockquote>
7. 注釋
[//]: # (注釋,,不會在瀏覽器中顯示,。)
8. 注腳
注腳
這是個有注腳的文本。[^注腳]
[^注腳]:注腳內(nèi)容這是注腳
這是個有注腳的文本,。
|