mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-18 23:09:49 +02:00
26 lines
528 B
HTML
26 lines
528 B
HTML
<html>
|
|
<head>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>info below</h1>
|
|
<pre class="mermaid">
|
|
info
|
|
</pre>
|
|
|
|
<hr />
|
|
<pre class="mermaid">
|
|
info showInfo
|
|
</pre>
|
|
|
|
<script type="module">
|
|
import mermaid from './mermaid.esm.mjs';
|
|
mermaid.initialize({
|
|
theme: 'forest',
|
|
logLevel: 3,
|
|
securityLevel: 'loose',
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|