24 lines
649 B
HTML
Raw Normal View History

2022-02-10 20:32:21 +01:00
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
2022-02-10 20:32:21 +01:00
</head>
<body>
<h1>info below</h1>
<pre class="mermaid">
info
</pre>
2023-02-19 14:03:11 +05:30
<script type="module">
import mermaid from './mermaid.esm.mjs';
2022-02-10 20:32:21 +01:00
mermaid.initialize({
theme: 'forest',
// themeCSS: '.node rect { fill: red; }',
logLevel: 3,
flowchart: { curve: 'linear' },
gantt: { axisFormat: '%m/%d/%Y' },
sequence: { actorMargin: 50 },
// sequenceDiagram: { actorMargin: 300 } // deprecated
});
</script>
</body>
</html>