avatar

目錄
Markdown 常用語法

標題 (6 levels)

# 號、空格

Markdown
# h1
## h2
### h3
#### h4
##### h5
###### h6

h1
=========

h2
---------

文字樣式

文字樣式 Markdown 語法 效果
粗體 (bold) **example** example
斜體 (italic) *example* example
粗斜體 (bold-italic) ***example*** example
底線 (underline) <u>example</u> example
刪除線 (srikethrough) ~~example~~ example
文字顏色 (font color) <font color=red>example</font> example
非標題的文字大小 (font size - not heading) <font size=5>example</font> example
文字顏色+大小 (font color + size) <font color=red size=5>example</font> example

引用 (Blockquotes)

>號、空格

Markdown
> 這裡是引用內容
> 引用引用引用引用引用

> 這裡是引用內容
>> 引用中的引用

【↓↓↓↓ 效果 ↓↓↓↓】

這裡是引用內容
引用引用引用引用引用

這裡是引用內容

引用中的引用


列表 (Lists)

Ordered Lists

Markdown
1. First item
2. Second item
3. Third item
1. Indented item
2. Indented item
4. Fourth item

【↓↓↓↓ 效果 ↓↓↓↓】

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

Unordered Lists

前面用 +-* 符號也可以。

Markdown
+ First item
+ Second item
+ Third item
+ Indented item
+ Indented item
+ in-Indented item
+ Fourth item

【↓↓↓↓ 效果 ↓↓↓↓】

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
      • in-Indented item
  • Fourth item

短程式 (Code)

用前後一點(tab 上面、數字1 左面那粒制)包著,如下:
markdown-code

【↓↓↓↓ 效果 ↓↓↓↓】
i am code


程式碼 (Code Blocks)

用前後三點包著,上面那行寫 code language,如下:
markdown-codeblock

【↓↓↓↓ 效果 ↓↓↓↓】

html
<p style="color:red;">
sample of showing <b>codeblocks</b>.
</p>

分隔線 hr

三個 dash ---

【↓↓↓↓ 效果 ↓↓↓↓】
我的設定就是下面這條黃色線。


超連結 (Hyperlink)

Markdown
Here is the link of [Google](https://www.google.com)

展示純網址 <https://www.google.com>

【↓↓↓↓ 效果 ↓↓↓↓】
Here is the link of Google

展示純網址 https://www.google.com


圖片 (Image)

![alt text](圖片地址)

Markdown
![表符](https://emos.plurk.com/fcd34ce05c37536b808496e9da74c8b6_w40_h47.gif)

【↓↓↓↓ 效果 ↓↓↓↓】
表符


表格 (Table)

不對齊也可以,寬度自動生成的。
靠左 :---
置中 :----:
靠右 ---:

Markdown
| Syntax      | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |


| Syntax | Description |
| --- | ----------- |
| Header | Title |
| Paragraph | Text |


| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| 靠左對齊 | 置中 | 靠右對齊 |
| Paragraph | Text | And more |
Syntax Description
Header Title
Paragraph Text
Syntax Description
Header Title
Paragraph Text
Syntax Description Test Text
靠左 置中 靠右
Paragraph Text And more

在 table 內使用 | 符號注意

由於 pipe 符號和 markdown 的 table 語法有衝突,
如要在markdown 的 table 內顯示pipe 符號 | ,要輸入作 \|

Markdown
|   例   | 
| :----: |
| \| |
|

代辦事項 (Task Lists)

Markdown
- [ ] To do item 1
- [x] To do item 2
- [ ] To do item 3
  • To do item 1
  • To do item 2
  • To do item 3

參考


如果您喜歡我的文章,歡迎幫我在下面按5下讚!感謝您的鼓勵和支持!

文章作者: ouoholly
文章鏈接: https://ouoholly.github.io/post/markdown-notes/
版權聲明: 本博客所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。歡迎「部份引用」與介紹(如要全文轉貼請先留言詢問),轉載引用請註明來源 ouoholly 的倉庫,謝謝!

評論