Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.94 KB

markdown-cheatsheet.md

File metadata and controls

45 lines (36 loc) · 2.94 KB
title description created
Markdown CheatSheet
The most commonly used markdown syntaxes are given here.
2022-10-18

Table of Contents

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

🔼Back to Top

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.~~ 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

🔼Back to Top