[Blog Title] — Looking Forward to things
1 min read
[This is a placeholder post demonstrating the MDX features available to every article: syntax highlighting, callouts, Mermaid diagrams, and math. Replace this content with your own.]
A regular section
[Body paragraph. Write naturally — headings, lists, and inline code all render with the site's editorial type system automatically.]
Tip
Use the Callout component for asides, tips, or warnings without leaving MDX.
Code blocks
Every code block gets syntax highlighting and a copy button automatically:
export function add(a: number, b: number): number {
return a + b;
}Diagrams
Mermaid diagrams render client-side:
graph LR
A[Request] --> B{Cache hit?}
B -- Yes --> C[Return cached response]
B -- No --> D[Fetch from origin]
D --> E[Populate cache]
E --> CMath
Inline math like and block math both work:
Wrapping up
[Closing paragraph — a summary, call to action, or link to related work.]
Related posts
[Blog Title] — A second example post
[A one-sentence summary for this post.]
1 min read#writing#example