天天看點

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 應用程式都支援這些元素。
| 表格(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
           

其他文法

注音符号 {喜大普奔|hē hē hē hē}
橫屏滑動幻燈片

<![](url),![](url)>

Refercense

  • https://markdown.com.cn/cheat-sheet.html
  • https://markdown.com.cn/editor/

繼續閱讀