콘텐츠로 바로가기

Verification Post: Math, Mermaid, and Shiki

1 min read89 words

A post to verify that all advanced markdown rendering features are working as expected.

Feature Verification

This post verifies the implementation of mathematics, diagrams, and syntax highlighting.

1. Mathematics (KaTeX)

Standard formula: E=mc2E = mc^2

Block formula:

abf(x)dx=F(b)F(a)\int_{a}^{b} f(x) dx = F(b) - F(a)

2. Diagrams (Mermaid)

graph TD A[Start] --> B{Process}; B -->|Success| C[End]; B -->|Failure| D[Retry]; D --> B;

3. Syntax Highlighting (Shiki)

def hello_world():
    print("Hello from Shiki!")
    return True

4. Shortcode: Figure

Profile Image Test
Checking if figure shortcode renders correctly

End of verification.