Markdown Cheatsheet
A printable quick reference for the most common Markdown syntax.
Text Formatting
Section titled “Text Formatting”| Syntax | Result |
|---|---|
**bold** | bold |
*italic* | italic |
~~strikethrough~~ | |
`inline code` | inline code |
Headings
Section titled “Headings”# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6- Bullet item- Another item - Nested item
1. Numbered item2. Another item
- [x] Checked task- [ ] Unchecked taskLinks and Images
Section titled “Links and Images”[Link text](https://example.com)Blockquotes
Section titled “Blockquotes”> This is a quote.> It can span multiple lines.Code Blocks
Section titled “Code Blocks”```languagecode here```Tables
Section titled “Tables”| Header 1 | Header 2 ||----------|----------|| Cell 1 | Cell 2 || Cell 3 | Cell 4 |Horizontal Rule
Section titled “Horizontal Rule”---Bokuchi-Specific: Variables
Section titled “Bokuchi-Specific: Variables”<!-- @var name: value -->Text with {{name}} placeholder.See Variables for full documentation.
Bokuchi-Specific: Math (KaTeX)
Section titled “Bokuchi-Specific: Math (KaTeX)”Inline: $E = mc^2$
Display:
$$\sum_{i=1}^{n} x_i$$Enable in Settings > Advanced > Rendering Extensions.
Bokuchi-Specific: Diagrams (Mermaid)
Section titled “Bokuchi-Specific: Diagrams (Mermaid)”```mermaidgraph LR A --> B --> C```Enable in Settings > Advanced > Rendering Extensions.
Bokuchi-Specific: Text Effects
Section titled “Bokuchi-Specific: Text Effects”Wrap content in :::effectName and ::: to apply a visual effect in the preview.
:::shakeThis text shakes!:::
:::rainbowRainbow-colored text.:::Available effects: shake, rainbow, glow, bounce, blink