mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
39 lines
983 B
HTML
39 lines
983 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=" />
|
||
|
<style>
|
||
|
div.mermaid {
|
||
|
/* font-family: 'trebuchet ms', verdana, arial; */
|
||
|
font-family: 'Courier New', Courier, monospace !important;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<pre class="mermaid">
|
||
|
timeline
|
||
|
title My day
|
||
|
section Go to work
|
||
|
1930 : first step : second step
|
||
|
: third step
|
||
|
1940 : fourth step : fifth step
|
||
|
</pre>
|
||
|
|
||
|
<script src="./mermaid.js"></script>
|
||
|
<script>
|
||
|
mermaid.initialize({
|
||
|
theme: 'forest',
|
||
|
logLevel: 1,
|
||
|
securityLevel: 'loose',
|
||
|
flowchart: { curve: 'basis' },
|
||
|
gantt: { axisFormat: '%m/%d/%Y' },
|
||
|
sequence: { actorMargin: 50 },
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|