--- title: Markdown Guide date: February 1, 2026 --- All design elements with source code. Copy, paste, create. --- # Heading 1 ## Heading 2 ### Heading 3 Regular paragraph text. Just write normally. *Italic text* using asterisks. **Bold text** using double asterisks. `Inline code` using backticks. --- > Blockquote > > Multiple lines. Great for quotes or standing out a thought. --- ### Lists - Bullet point - Another point - Nested point - Another nested 1. Numbered list 2. Second item 3. Third item --- ### Code Block ``` Regular code block with the left line and thick bottom border ``` --- ### Links [Link text](https://example.com) --- ### Separator Three dashes above creates a horizontal break. --- ## Quick Reference | Element | Markdown | |---------|----------| | Italic | `*text*` | | Bold | `**text**` | | Code | `` `code` `` | | Link | `[text](url)` | | Blockquote | `> quote` | | Code block | ``` triple backticks ``` | | Heading | `# Heading` | | Break | `---` | | Bullet list | `- item` or `* item` | | Numbered list | `1. item` | | Nested list | indent with 2 spaces | --- That's it. Keep it simple.