Markdown CheatSheet for Developers
Basic Syntax
Command | Description |
---|---|
**bold text** __bold text__ | Bold |
*italic text* _italic text_ | Italic |
# h1 ## h2 ### h3 | # Heading 1 ## Heading 2 ### Heading 3 |
[hello google](http://www.google.com) | Import link |
- first - second | Unordered list |
1. first 2. Second | Ordered List |
--- | Horizontal line |
 | Import Image |
Extended Syntax
Command | Description |
---|---|
X^2^ | Superscript |
H~2~O | Subscript |
I need to highlight these ==very important words==. | ==Highlight== |
That is so funny! :joy: | Emoji |
~~The world is flat.~~ | |
> blockquote | > Blockquotes |
``` { "First": "1st", "Second": "2nd" } ``` | Fenced code block |
- [x] task one - [ ] task two - [ ] task three | Task List |
| col1 | col2 | |------|------| |data1 |data2 | |data3 |data4 | | Table |
Here's a sentence with a footnote. [^1] [^1]: This is the footnote. | Footnote |