Markdown
Simple markup langauge.
Cheat Sheet
Basic
Element | Syntax |
---|---|
Heading | # H1 ## H2 ### H3 |
Bold | **bold** |
Italic | *italic* |
Blockquote | > blockquote |
Ordered List | 1. one 2. two 3. three |
Unordered List | - one - two - three |
Code | `code` |
HRule | --- |
Link | [text](hyperlink) |
Image | ![alt text](link_to_image) |
Extended
Element | Syntax |
---|---|
Table | | Header 1 | Header 2 | | --- | --- | | Cell 1 | Cell 2 | |
Code Block | ``` int main() { printf(“hello world!”); } ``` |
FootNote | Reference.[^1] [^1]: Note |
Heading ID | ### H1 {#custom-id} |
Definition List | term : definition |
Strikethrough | ~~strikethrough~~ |
Task List | - [x] task one - [] task two - [] task three |