On This Page
Hello, World ð
Welcome to this amazing blog!ð This post exercises every content format the blog supports. You should see bold text, highlighted phrases, and inline code in the same paragraph, plus cute emojis! âĻðð
Text & Links
Regular body copy with a link to MDN and an internal link back to the index.
Blockquotes render with a left border and muted text, useful for asides or citations.
- Unordered list item one
- Unordered list item two
- Ordered step one
- Ordered step two
Images
Markdown image:
Mountain landscape
Custom component with caption:
ImageViewer component with an optional caption
Code
Inline const answer = 42 and a fenced block with syntax highlighting:
type Post = {
slug: string;
title: string;
date: string;
};
export function sortByDate(posts: Post[]): Post[] {
return [...posts].sort(
(a, b) => new Date(b.date).getTime() - new Date(a.date).getTime(),
);
}def fibonacci(n: int) -> list[int]:
seq = [0, 1]
for _ in range(n - 2):
seq.append(seq[-1] + seq[-2])
return seq[:n]
print(fibonacci(10))Table
| Format | Example | Supported |
|---|---|---|
| Text | bold | Yes |
| Image | .png, .jpg | Yes |
| Code | pre + Shiki | Yes |
| Math | $E=mc^2$ | Yes |
| Audio | .mp3 | Yes |
| Video | .mp4 | Yes |
| Document | .pdf | Yes |
Math
Inline: the quadratic formula is .
Block equation:
Euler's identity:
Mermaid
Audio & Video
0:00
0:00
0:00 / 0:00
Document
Sample PDF documentOpens in a new tab â use this pattern for papers, slides, or downloads.3D Model
ææ―æč―Ž âĒ æŧč―ŪįžĐæū
You can interact with the 3D model:
- Drag to rotate the view
- Scroll to zoom in/out
Mind Map
If everything above renders correctly, your MDX pipeline is ready for real posts.