Back to posts
March 29, 2026
2 min read

Hello World

First post. Testing code blocks, Mermaid diagrams, and tables.

This is the first post. Here I’m testing the features supported by this blog.

Code Block

const greet = (name: string): string => {
  return `Hello, ${name}!`
}

console.log(greet("world"))
def fibonacci(n: int) -> list[int]:
    fib = [0, 1]
    for i in range(2, n):
        fib.append(fib[i-1] + fib[i-2])
    return fib[:n]

print(fibonacci(10))

Mermaid Diagram

graph TD
    A[Write Post] --> B{Format?}
    B -->|Markdown| C[.md file]
    B -->|MDX| D[.mdx file]
    C --> E[Git Push]
    D --> E
    E --> F[Auto Deploy]
sequenceDiagram
    Reader->>Blog: Visit page
    Blog->>CDN: Request assets
    CDN-->>Blog: Static HTML/CSS/JS
    Blog-->>Reader: Rendered page

Table

FeatureStatus
Code Highlightmulti-language
Mermaidflowchart, sequence
Dark Modeauto toggle
Searchfull-text
MDXcomponents in markdown
LaTeX$E = mc^2$