Markdown CheatSheet
Basic Syntax
These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
Refenced from here: click
| Syntax | Description |
|---|---|
| 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 |  |
| Table | | Syntax | Description | | ------- | ----------- | | Header | Title | | cell1 content | cell2 content | |
| Fenced Code Block | ``` { "hello": "world" } ``` |
| Footnote | Here's a sentence with a footnote. [^1] [^1]: This is the footnote. |
| Heading ID | ### MyGreate Heading {#custom-id} |
| Definition List | term : definition |
| Strikethrough | ~~The world is flat.~~ |
| Task List | - [x] task 1 - [ ] task2 |
| Emoji | That is so funny! :joy: |
| Highlight | ==Highlighted Content== |
| Subscript | H~ 2 ~O |
| Superscript | X^2^ |