title | description | created |
---|---|---|
Markdown CheatSheet |
The most commonly used markdown syntaxes are given here. |
2022-10-18 |
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 |
![alt text](image.jpg) |
Import Image |
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 |