將常用的 MarkDown 紀錄在這,
Ctrl + C 、 Ctrl + V
比較方便。
文字加顏色
藍色字1 | <font color="blue">藍色字</font> |
1 | <font color="red">紅色的字</font> |
1 | <font style="color:#f90;font-size:20px;">20px的字</font> |
文字增加背景色塊
站点配置文件
主题配置文件
站点配置文件
主题配置文件
1 | <span id="inline-blue">站点配置文件</span> |
自定義樣式
下列 自定義樣式,參考 超深度优化
文本置中引用
我不是一個偉大的程式設計師,我只是一個具有良好習慣的優秀程式設計師。
1 | {% cq %} |
数字塊
1.左邊是效果。
2.我是第二行。
1 | <span id="inline-toc">1.</span> |
label標籤
default1 | {% label default@default %} |
1 | {% label primary@primary %} |
1 | {% label success@success %} |
1 | {% label info@info %} |
1 | {% label warning@warning %} |
1 | {% label danger@danger %} |
note 標籤
1 | <div class="note default no-icon">default no-icon</div> |
default
1 | <div class="note default">default</div> |
primary
1 | <div class="note primary">primary</div> |
success
1 | <div class="note success">success</div> |
info
1 | <div class="note info">info</div> |
warning
1 | <div class="note warning">warning</div> |
danger
1 | <div class="note danger">danger</div> |
引用
内容
1 |
|
程式碼
行內
height: 50px;
1 | `height: 50px;` |
區段
1 | ```[language] [title] [url] [link-text] |
上述 4 項應該是根據 空格 來分隔,而不是 []
,故請不要加 []
。
除非如果你想寫後面兩個,但不想寫前面兩個,那麼就必須加 []
了,
要這樣寫: [] [] [url] [link text]
。
MarkDown 寫法:
1 | ``` CSS |
1 | ``` js |
可支援的語法: 連結
插入圖片
內部圖片
1 | {% asset_img logo.png logo %} |
外部圖片
1 | ![Mario](https://goo.gl/2Dty9K) |
文字超連結
More info: Writing
Google 連結:Google
1 | More info: [Writing](https://hexo.io/docs/writing.html) |
項目標籤
符號
- 序列 1
- 序列 2
- 序列 3
1 | - 序列 1 |
Check
- 序列 1
- 序列 2
- 序列 3
- 序列 4
1 | - [ ] 序列 1 |
數字
- 序列 1
- 序列 2
- 序列 3
- 序列 4
1 | 1. 序列 1 |
重點標示
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
1 | Strong emphasis, aka bold, with **asterisks** or **underscores**. |