Markdown & Mermaid Test

15. January 2025

Heading 1

This is a paragraph with bold text and italic text.

Heading 2

Another paragraph with some content.

Heading 3

  • Bullet point 1
  • Bullet point 2
  • Bullet point 3

Heading 4

  1. Numbered item 1
  2. Numbered item 2
  3. Numbered item 3

This is a blockquote with some important information.

Inline code and a code block:

function hello() {
  console.log("Hello, World!");
}

Mermaid Diagram Test

graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Debug]
    D --> A
    C --> E[End]

Another Mermaid Example

sequenceDiagram
    participant User
    participant System
    User->>System: Request
    System->>User: Response

Process Flow

flowchart LR
    A[Input] --> B[Process]
    B --> C[Output]
    C --> D{Valid?}
    D -->|Yes| E[Success]
    D -->|No| B