mdx showcase
January 28, 2026
MDX Showcase
This page shows what the MDX renderer supports: text, lists, tables, code blocks, and charts, styled with the Kanagawa palette.
Bold and italic samples appear here to verify typography.
Highlights
- Bold and italic text
- Custom code blocks
- Tables
- Recharts charts
Code block (TypeScript)
ts
type Lang = "pt" | "en";
const labels: Record<Lang, string> = {
pt: "Ola, mundo",
en: "Hello, world",
};
export function say(lang: Lang) {
return labels[lang];
}Feature table
| Feature | Status | Notes |
|---|---|---|
| Code blocks | OK | Custom component |
| Tables | OK | Kanagawa styling |
| Charts | OK | Recharts |