Skip to main content

Markdown CheatSheet for Developers

Basic Syntax

CommandDescription
**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
![alt text](image.jpg)Import Image

Extended Syntax

CommandDescription
X^2^Superscript
H~2~OSubscript
I need to highlight these ==very important words==.==Highlight==
That is so funny! :joy:Emoji
~~The world is flat.~~ Strikethrough
> 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