Markdown Tutorial
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Below is a comprehensive guide to Markdown syntax.
Headings
Use # for headings:
# Heading 1
## Heading 2
### Heading 3Emphasis
- Bold:
**text** - Italic:
*text* Strikethrough:~~text~~
Lists
- Unordered list:
- Item
- Ordered list:
1. Item
Blockquotes
Use > for blockquotes:
> This is a blockquote.Code Blocks
Use triple backticks for code blocks:
Code block
Tables
| Column 1 | Column 2 |
|----------|----------|
| Data 1 | Data 2 |Links
[Link Text](https://example.com)Images
That’s it! You’re now ready to write Markdown.