On This Page

Blog

Hello, World 👋

May 22, 2026

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
  1. Ordered step one
  2. Ordered step two

Images

Markdown image:

Mountain landscape

Mountain landscape

Custom component with caption:

Forest in morning light

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

FormatExampleSupported
TextboldYes
Image.png, .jpgYes
Codepre + ShikiYes
Math$E=mc^2$Yes
Audio.mp3Yes
Video.mp4Yes
Document.pdfYes

Math

Inline: the quadratic formula is x=−b±b2−4ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}x=2a−b±b2−4ac​​.

Block equation:

âˆŦ−∞∞e−x2 dx=π\int_{-\infty}^{\infty} e^{-x^2}\, dx = \sqrt{\pi}âˆŦ−∞∞​e−x2dx=π​

Euler's identity:

eiπ+1=0e^{i\pi} + 1 = 0eiπ+1=0

Mermaid

Audio & Video

SoundHelix sample track (MP3)
0:00
0:00
MDN sample video (MP4)
Your browser does not support video playback.
0:00 / 0:00

Document

DOCSample PDF documentOpens in a new tab — use this pattern for papers, slides, or downloads.

3D Model

Interactive 3D Scene
æ‹–æ‹―æ—‹č―Ž â€Ē æŧšč―ŪįžĐæ”ū

You can interact with the 3D model:

  • Drag to rotate the view
  • Scroll to zoom in/out

Mind Map

Blog Features

If everything above renders correctly, your MDX pipeline is ready for real posts.