1. 程式人生 > 其它 >Markdown 語法速查表

Markdown 語法速查表

Markdown 速查表



基本語法

這些是 John Gruber 的原始設計文件中列出的元素。所有 Markdown 應用程式都支援這些元素。

元素 Markdown 語法
標題(Heading) # H1
## H2
### H3
粗體(Bold) **bold text**
斜體(Italic) *italicized text*
引用塊(Blockquote) > blockquote
有序列表(Ordered List) 1. First item
2. Second item
3. Third item
無序列表(Unordered List) - First item
- Second item
- Third item
程式碼(Code) `code`
分隔線(Horizontal Rule) ---
連結(Link) [title](<https://www.example.com>)
圖片(Image) ![alt text](image.jpg)

圖片支援 jpg、png、gif、svg 等圖片格式,其中 svg 檔案僅可在微信公眾平臺中使用


擴充套件語法

這些元素通過新增額外的功能擴充套件了基本語法。但是,並非所有 Markdown 應用程式都支援這些元素。

元素 Markdown 語法
| 表格(Table) | Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
程式碼塊(Fenced Code Block) ```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
腳註(Footnote) Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
標題編號(Heading ID) ### My Great Heading {#custom-id}
定義列表(Definition List) term
: definition
刪除線(Strikethrough) ~~The world is flat.~~
任務列表(Task List) - [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

程式碼塊支援以下語言種類:

bash
clojure,cpp,cs,css
dart,dockerfile, diff
erlang
go,gradle,groovy
haskell
java,javascript,json,julia
kotlin
lisp,lua
makefile,markdown,matlab
objectivec
perl,php,python
r,ruby,rust
scala,shell,sql,swift
tex,typescript
verilog,vhdl
xml
yaml

其他語法

元素 Markdown 語法
注音符號 {喜大普奔|hē hē hē hē}
橫屏滑動幻燈片 <![](url),![](url)>



Refercense