Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Text Formatting
**Bold Text** or __Bold Text__
*Italic Text* or _Italic Text_
~~Strikethrough~~
`Inline Code`Lists
Unordered Lists
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2Ordered Lists
1. First item
2. Second item
1. Sub-item 2.1
2. Sub-item 2.2Task Lists
- [x] Completed task
- [ ] Incomplete taskLinks and Images
[Link Text](https://example.com)
[Link Text with Title](https://example.com "Tooltip Title")
Blockquotes
> This is a blockquote.
> It can span multiple lines.
>> And can be nested.Code Blocks
Use three backticks (```) and optionally specify the language for syntax highlighting.
function greet() { console.log("Hello, World!"); }
Tables
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |Horizontal Rule
---