Markdown
More specifically basic grammar 和 extended syntax
Cheat Sheet
Basic Grammar
| Element | Markdown Grammar |
|---|---|
| Heading | # H1 ## H2 ### H3 |
| Blod | **blod text** |
| Italic | *italicized text* |
| Blockquote | > blockquote |
| Ordered List | 1. First item |
| Unordered List | - First item |
| Code | code |
| Horizontal Rule | --- |
| Link | [title](https://www.example.com) |
| Image |  |
Extended Syntax
| Element | Markdown Grammar |
|---|---|
| Table | ` |
| Fenced Code Block | ``` {"name": "John"} ``` |
| 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 |
My Blog Docs