blob: e2fd202802c997455f205c7703433ccc9f9bccfb [file] [log] [blame]
Sean McCullough8d93e362025-04-27 23:32:18 +00001<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Mermaid Diagram Test</title>
7 <script type="module" src="./mermaid-test.ts"></script>
8 <style>
9 body {
10 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
11 padding: 20px;
12 max-width: 1000px;
13 margin: 0 auto;
14 }
15 h1 {
16 color: #333;
17 }
18 .container {
19 border: 1px solid #ddd;
20 border-radius: 4px;
21 padding: 20px;
22 margin: 20px 0;
23 }
24 </style>
25</head>
26<body>
27 <h1>Mermaid Diagram Testing</h1>
28 <p>This page tests the integration of Mermaid diagrams in the markdown renderer.</p>
29
30 <div class="container">
31 <mermaid-test-component></mermaid-test-component>
32 </div>
33</body>
34</html>