mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
22 lines
515 B
HTML
22 lines
515 B
HTML
<html>
|
|
<head>
|
|
<script src="/e2e.js"></script>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<style></style>
|
|
</head>
|
|
<body>
|
|
<script src="./mermaid.js"></script>
|
|
<script>
|
|
// Notice startOnLoad=false
|
|
// This prevents default handling in mermaid from render before the e2e logic is applied
|
|
mermaid.initialize({
|
|
startOnLoad: false,
|
|
useMaxWidth: true,
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|