Markdown Syntax Guide
3 min read

Certainly! Below are various Markdown stylings you can use:
Headers
- Headers in Markdown Syntax
# H1
## H2
### H3
#### H4
##### H5
###### H6
# H1
## H2
### H3
#### H4
##### H5
###### H6
Emphasis
- Emphasis in Markdown Syntax:
*italic*
**bold**
***bold and italic***
~~strikethrough~~
*italic*
**bold**
***bold and italic***
~~strikethrough~~
Lists
- Headers in Markdown Syntax:
Unordered List
- Unordered List in Markdown Syntax
- Item 1
- Item 2
- Subitem 1
- Subitem 2
- Item 1
- Item 2
- Subitem 1
- Subitem 2
Ordered List
- Ordered List in Markdown Syntax
1. First item
2. Second item
1. Subitem 1
2. Subitem 2
1. First item
2. Second item
1. Subitem 1
2. Subitem 2
Links
- Links in Markdown Syntax:
[Link Test](http://serverx.org.in/)
[Link Test](http://serverx.org.in/)
Images
Images in Markdown Syntax:
For online links:


- For local images:
File Structure
- articles
└── markdown-syntax-guide
├── img
│ ├── featured.png
│ └── sample.png
└── index.md
- articles
└── markdown-syntax-guide
├── img
│ ├── featured.png
│ └── sample.png
└── index.md


Blockquotes
- Blockquotes in Markdown Syntax:
> This is a blockquote
> This is a blockquote
Code Snippets
- Code Snippets in Markdown Syntax:
For Cyberkavach 101 articles, remove those spaces infront of ``` for making it work
```py
code block
code block
```
Horizontal Rule
- Horizontal Rule in Markdown Syntax:
---
---
Tables
- Tables in Markdown Syntax:
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
Task Lists
- HeadTask Listsers in Markdown Syntax:
- [x] Task 1
- [ ] Task 2
- [x] Task 1
- [ ] Task 2
Is this Helpful?