mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-20 15:59:51 +02:00
22 lines
531 B
HTML
22 lines
531 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Mermaid Quick Test Page</title>
|
|
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=">
|
|
</head>
|
|
<body>
|
|
<div class="mermaid">
|
|
pie title Example pie chart
|
|
"ash" :60.89
|
|
"bat" : 39.5
|
|
"cat": 89.99
|
|
</div>
|
|
<script src="./mermaid.js"></script>
|
|
<script>
|
|
mermaid.initialize({ startOnLoad: true, securityLevel: 'loose', logLevel: 1 });
|
|
</script>
|
|
</body>
|
|
</html>
|