Markdown Quick Reference
Markdown is a lightweight markup language for creating formatted text. It's widely used for README files, documentation, forums, and note-taking.
Headers
# H1\n## H2\n### H3\n#### H4Emphasis
*italic* or _italic_\n**bold** or __bold__\n***bold italic***Lists
- Unordered item\n- Another item\n - Nested item\n\n1. Ordered item\n2. Another itemLinks and Images
[Link text](https://example.com)\nCode
Inline `code`\n\n```javascript\nconst code = "block";\n```Blockquotes
> This is a quote\n> Multiple linesTables
| Header 1 | Header 2 |\n|----------|----------|\n| Cell 1 | Cell 2 |Horizontal Rule
---Common Uses
- README files on GitHub
- Technical documentation
- Blog posts and articles
- Note-taking applications
- Forum posts (Reddit, Stack Overflow)