Basic Syntax :
-
HEADERS (H1 to H6)
# h1 tag
## h2 tag
### h3 tag
#### h4 tag
##### h5 tag
###### h6 tag
Output
h1 tag
h2 tag
h3 tag
h4 tag
h5 tag
h6 tag
-
EMPHASIS
*This is italic*
_This is also italic_
**This is bold**
__This is also bold__
Output
This is italic
This is also italic
This is bold
This is also bold
-
BLOCKQUOTES
> this is a single block quote.
>> this is a nested block quote.
Output
this is a single block quote.
this is a nested block quote.
-
LIST
-
Ordered List :
1. First item
2. Second item
Output
- First item
- Second item
-
Unordered List :
- First item
- Second item
Output
- First item
- Second item
-
Table
| topic | Description |
| ----------- | ----------- |
| text1 | Text 2 |
| text3 | Text 4 |
Output
| topic | Description |
|---|---|
| text1 | Text 2 |
| text3 | Text 4 |
-
Check Box:
- [ ] task 1
- [x] task 2
Output:
- task 1
- task 2
-
HORIZONTAL RULE
---
Output
-
Code
`This is a code`
Output
This is a code
More Examples :
Highlighted C Codes:
```c
Printf("Hello World!");
Output
Printf("Hello World!");
Highlighted HTML Codes:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
Output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
-
LINK
Normal link Syntax:
[title](https://www.example.com)
Example:
[Github](https://www.github.com)
Emails Syntax:
<email id>
Example:
<[email protected]>
Output :
-
IMAGES
Syntax:

Example:

Output :

Advanced Syntax :
-
EMOJI
Syntax: :short code:
Example : :laughing:
Output :
:laughing:
-
FOOTNOTE
Here's a sentence with a footnote. [^1]
[^1]: It is the footnote.
Here's a sentence with a footnote. [^1]
[^1]: It is the footnote.
-
STRIKE THROUGH
Syntax:
~~Sentence~~
Example:
~~This sentence is incorrect~~
Output :
This sentence is incorrect