blob: 3635122f80ae5b51183623f8522c6ebc06f9dc02 [file] [log] [blame]
Autoformatterdded2d62025-04-28 00:27:21 +00001<!doctype html>
Sean McCullough8d93e362025-04-27 23:32:18 +00002<html lang="en">
Autoformatterdded2d62025-04-28 00:27:21 +00003 <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:
11 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
12 Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
13 padding: 20px;
14 max-width: 1000px;
15 margin: 0 auto;
16 }
17 h1 {
18 color: #333;
19 }
20 .container {
21 border: 1px solid #ddd;
22 border-radius: 4px;
23 padding: 20px;
24 margin: 20px 0;
25 }
26 </style>
27 </head>
28 <body>
29 <h1>Mermaid Diagram Testing</h1>
30 <p>
31 This page tests the integration of Mermaid diagrams in the markdown
32 renderer.
33 </p>
34
35 <div class="container">
36 <mermaid-test-component></mermaid-test-component>
37 </div>
38 </body>
39</html>