2019-07-12 20:40:54 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>mermaid - Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="description" content="Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.">
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
2020-06-24 21:26:55 +02:00
|
|
|
<!-- <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css"> -->
|
2021-06-06 08:44:00 +02:00
|
|
|
<link rel="stylesheet" href="theme.css"> <script src="//cdn.jsdelivr.net/npm/mermaid@8.10.2/dist/mermaid.min.js"></script>
|
2020-05-16 20:00:44 +02:00
|
|
|
<!-- <script src="http://localhost:9000/mermaid.js"></script> -->
|
2019-11-27 20:08:54 +01:00
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', 'UA-153180559-1', 'auto');
|
|
|
|
if(location) {
|
|
|
|
ga('send', 'pageview', location.hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2019-07-12 20:40:54 +02:00
|
|
|
<style>
|
|
|
|
.markdown-section {
|
|
|
|
max-width: 1200px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
|
|
|
search: 'auto',
|
|
|
|
name: 'mermaid',
|
2020-11-15 10:27:08 +08:00
|
|
|
repo: 'https://github.com/mermaid-js/mermaid',
|
2019-07-12 20:40:54 +02:00
|
|
|
loadSidebar: true,
|
|
|
|
mergeNavbar: true,
|
|
|
|
maxLevel: 4,
|
|
|
|
subMaxLevel: 2,
|
|
|
|
markdown: {
|
2019-07-17 18:14:22 +02:00
|
|
|
renderer: {
|
|
|
|
code: function(code, lang) {
|
|
|
|
if (lang === "mermaid") {
|
|
|
|
return (
|
|
|
|
'<div class="mermaid">' + mermaid.render('mermaid-svg-' + num++, code) + "</div>"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return this.origin.code.apply(this, arguments);
|
|
|
|
}
|
2019-07-12 20:40:54 +02:00
|
|
|
}
|
2020-11-15 10:27:08 +08:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
function (hook, vm) {
|
|
|
|
hook.beforeEach(function (html) {
|
|
|
|
url = 'https://github.com/mermaid-js/mermaid/blob/develop/docs/' + vm.route.file
|
|
|
|
var editHtml = '[:memo: Edit this Page](' + url + ')\n'
|
|
|
|
return editHtml + html
|
|
|
|
})
|
|
|
|
}
|
|
|
|
]
|
2019-07-12 20:40:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var num = 0;
|
2020-06-24 21:26:55 +02:00
|
|
|
const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
|
|
|
2020-06-24 21:28:12 +02:00
|
|
|
const conf = { logLevel:4, startOnLoad: false, themeCSS:'.label { font-family: Source Sans Pro,Helvetica Neue,Arial,sans-serif; }' };
|
2020-07-22 19:22:02 +02:00
|
|
|
if(isDarkMode && false) conf.theme = 'dark';
|
2020-06-24 21:26:55 +02:00
|
|
|
mermaid.initialize(conf);
|
2019-07-12 20:40:54 +02:00
|
|
|
|
2019-11-27 20:08:54 +01:00
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
window.onhashchange = function(a) {
|
|
|
|
//code
|
|
|
|
if(location) {
|
|
|
|
ga('send', 'pageview', location.hash);
|
|
|
|
}
|
|
|
|
}
|
2019-07-12 20:40:54 +02:00
|
|
|
</script>
|
2020-11-15 10:27:08 +08:00
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js"></script>
|
2019-07-12 20:40:54 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
2020-05-17 10:29:55 +02:00
|
|
|
<!-- -->
|
2020-10-25 00:30:20 -07:00
|
|
|
|
|
|
|
</html>
|