mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-02-04 07:13:25 +08:00
24 lines
686 B
HTML
24 lines
686 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 id="FirstLine" class="mermaid">
|
|
graph TB
|
|
FullFirstSquad-->StripedFirstSquad
|
|
click FullFirstSquad showFullFirstSquad "show <strong>details</strong>"
|
|
</div>
|
|
<script src="./mermaid.js"></script>
|
|
<script>
|
|
function showFullFirstSquad(elemName) {
|
|
console.log('show ' + elemName);
|
|
}
|
|
mermaid.initialize({ startOnLoad: true, securityLevel: 'loose', logLevel: 1 });
|
|
</script>
|
|
</body>
|
|
</html>
|