Links
https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax
# Markdown: A Plain Text Guide with Examples
Markdown is a lightweight markup language used to format plain text. It's widely used on platforms like GitHub, Reddit, and many documentation tools.
## 1. Headings
Use `#` symbols followed by a space for headings. More `#` symbols mean smaller headings.
# H1 Heading
## H2 Heading
### H3 Heading
## 2. Emphasis (Bold & Italics)
*Italic* or _Italic_
**Bold** or __Bold__
***Bold and italic*** or ___Bold and italic___
## 3. Lists
### Unordered List
- Item 1
- Item 2
- Subitem
### Ordered List
1. First
2. Second
3. Third
## 4. Links
[GitHub Docs](<https://docs.github.com>)
## 5. Images

## 6. Code
### Inline Code
Use `code` inside a sentence.
### Code Block