Last Updated: 5/6/2026
Content types
Verifies markdown features that have historically tripped renderers.
Tables with pipes inside cells
| Operator | Meaning | Example |
|---|---|---|
| | Pipe-or | a | b |
& | Ampersand | a & b |
< | Less than | x < 10 |
\\ | Backslash | path\\file |
Inline HTML
Click to expand
Inline HTML inside markdown. Some MDX configs strip this — Nextra v4 should preserve `
H3 with
`.
Code blocks across many languages
echo "shell"def hello(): print("python")fn main() { println!("rust"); }package main
import "fmt"
func main() { fmt.Println("go") }key: value
list:
- one
- two{ "valid": true, "count": 1 }SELECT id, name FROM users WHERE active = true;GET /api/v1/things HTTP/1.1
Host: example.com; Some Shiki versions don't ship an INI grammar — verify graceful fallback
[section]
key = valueHeading styles
H3 with inline code and bold
H4 with a link and italic
H5 — rarely used, exercise it anyway
Long table
| Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 |
|---|---|---|---|---|---|
| a1 | a2 | a3 | a4 | a5 | a6 |
| b1 | b2 | b3 | b4 | b5 | b6 |
| c1 | c2 | c3 | c4 | c5 | c6 |