markdown是純文字格式的語法,支援轉換為html,可以幫助整理知識、學習筆記
markdown的段落是由若干行文字組成,前後由空行隔開;普通段落不該用空格或製表符縮排
markdown支援兩種標題樣式:setext和atx
setext風格的標題用符號=
(first level)和-
(second level)標註在文字下方
this is an h1.
**********===
this is an h2.
-------------
atx風格的標題是將若干個#
符號放在開始,例如
# this is an h1. #
## this is an h2. ##
###### this is an h6. ###
結尾處的#符號是可選的,而且數量與開始端不要求保持相同
markdown中的區塊引用用類似email中的>
的引用方式,即現在區塊引用內部斷好行,再在每行開始新增>
> this is a blockquote with two paragraphs. lorem ipsum dolor sit amet,
> consectetuer adipiscing elit. aliquam hendrerit mi posuere lectus.
> vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
>
> donec sit amet nisl. aliquam semper ipsum sit amet velit. suspendisse
> id sem consectetuer libero luctus adipiscing.
markdown也支援僅在段落開始新增>
,在區塊引用內部,可以使用markdown的語法
markdown支援有序和無序列表
無序列表使用*
+
-
符號作為列標記
* red
* blue
* green
有序列表使用數字和符號.
1. bird
2. fish
3. chicken
其實列表數字的正確與否並不影響html輸出
列表專案標記通常放在最左邊,標記後要接空格或製表符
要標記段落為**塊,僅需縮排單個製表符
this is a normal paragraph.
this is a code block.
也可以利用```
來標記**塊, 新增**高亮
```js
var b= {};
```
假如要在行內標記**(內聯**),可使用符號反引號
this is a `inline code block`
[i'm an inline-style link](
[i'm an inline-style link with title]( "google's homepage")
[i'm a reference-style link][arbitrary case-insensitive reference text]
[i'm a relative reference to a repository file](../blob/master/license)
在引用鏈結中,需要額外的方括號,內部填寫引用的鏈結標籤
this is [an example][id] reference-style link.
在文件的其他地方定義該鏈結標籤,這樣支援鏈結的復用
[id]: "optional title here"
markdown使用*
和_
作為標記強調字元的符號,被*
或_
包圍的字元被轉換為
標記,使用兩個的話,則轉換為
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
假如*
和_
字元兩邊都有空白的話,會被當做普通字元
markdown支援**
| tables | are | cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
符號:
表示文字的對齊方式
markdown 語法學習
markdown是一種輕量級的標記語言,和html類似,但是易讀性比html要好很多。基本語法 1.標題和正文分隔線 至少三個連續等號,最高端標題 或者三個連續的減號,第二高階標題 2.標題字型大小 用 若干個 為字首 的個數對應於html中的 hx,即 1個 為h1的大小,6個 為h6 的大小 3...
Markdown 語法學習
進來深感記憶力不如從前,學習過的很多技能都已模糊,才慢慢思考自己不愛做筆記的陋習。自己經常在csdn上學習,遂想學習大牛們分享所學,順便備份。csdn上用markdown語法進行編輯,之前看過語法,一直沒有實踐,so,始於此!編輯器選擇 atom 語法參考 csdn寫部落格介面幫助檔案。寫在前面 空...
markdown語法學習
加空格表示一級標題 乙個 兩個 加空格為二級標題 章節標題 三個 加空格為 標題 段落標題 最多到六級標題 標題一般只用到 四五六級標題一般不使用,而是採用有序列表或者無序列表在文章中顯示 左右兩星 加粗 左右單星 傾斜 加顏色 支援html 段與段之間至少敲乙個空格 段與段有序列表 數字點空格 無...