What is Markdown?
Markdown is a lightweight markup language created by John Gruber in 2004. It allows you to write formatted text using plain text syntax that can be converted to HTML.
Markdown Cheatsheet
| Syntax | Result |
|---|---|
# Heading 1 | Heading 1 |
## Heading 2 | Heading 2 |
**bold** | bold |
*italic* | italic |
[text](url) | Link |
`code` | Inline code |
- item | Unordered list |
1. item | Ordered list |
> quote | Blockquote |
--- | Horizontal rule |