Markdown Syntax Guide
This document showcases all supported Markdown grammar commonly used in GitHub READMEs.
1. Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
2. Text Formatting
Bold and Italic
**Bold**
_Italic_
_Italic_
**_Bold and Italic_**
Bold
Italic
Italic
Bold and Italic
3. Lists
Unordered List
- Item 1
- Sub-item 1
- Sub-item 2
- Item 2
- Item 1
- Sub-item 1
- Sub-item 2
- Item 2
Ordered List
1. Item 1
2. Item 2
1. Sub-item 1
2. Sub-item 2
- Item 1
- Item 2
- Sub-item 1
- Sub-item 2
4. Links
Basic Link
[Link text](https://example.com)
5. Images
![Alt text](https://via.placeholder.com/150 "Optional Title")
6. Blockquotes
> Blockquote
>
> > Nested Blockquote
Blockquote
Nested Blockquote
7. Horizontal Rule
---
8. Advanced Markdown Extensions
Math Expressions
$$
E = mc^2
$$
Conclusion
This file showcases all supported Markdown syntax used in GitHub README files.