Back to Home

title: "Test Project" date: "2026-06-15" description: "A test project to verify the MDX pipeline with Mermaid support."

Test Project

This is a test project page to verify the MDX pipeline works correctly with Mermaid diagram support.

Overview

This project demonstrates:

  • Dynamic MDX rendering from the content/projects/ directory
  • Mermaid diagram support for visualizing concepts
  • KaTeX math rendering for equations
  • Tailwind Typography for beautiful markdown styling

System Architecture

Here's a Mermaid diagram showing the system architecture:

Algorithm Flow

Another example showing an algorithm flow:

Math Example

Here's a math equation using KaTeX:

i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}

Code Example

def fibonacci(n: int) -> int:
    if n <= 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)

Conclusion

This test project confirms that the MDX pipeline with Mermaid support is working correctly.