Markdown|Markdown 常用格式

標題類型 #,##...###### + 空格 + 文字(最高6級)
## This is an H2
This is an H2 引言 > This is a blockquote with two paragraphs.

This is a blockquote with two paragraphs.
無序列表+,-,*,有序列表使用1.2.3.... 【Markdown|Markdown 常用格式】- Another item in the same list.
  • Another item in the same list.
程式代碼塊
  • 用空行+首行4空格表示
    this is a javascript code

  • ``` 內容 ```
test 123

帶底色程式碼 `內容` Use the printf() function.
分割線 ___,---,***
鏈接
  • [an example](http://example.com/ "Title")代表
    This is an example inline link.
    [1]: http://google.com/ "Google"
  • <>包住自動連結
    http://example.com/
斜體和粗體
  • _,*表示斜體
  • __,**表示粗體
圖片 ![Alt text][src]
[id]: image_src "Optional title attribute"
跳脫字元 如果需要輸入特殊符號(如+,*...),使用反斜杠\
\*literal asterisks\*輸出為*literal asterisks*
輸出一個表格
| email | password | | --- | --- | | 123@qq.com | 123456 |

email password
123@qq.com 123456

    推荐阅读