mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-10-30 18:34:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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">
 | |
|   <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
 | |
|   <script src="//cdn.jsdelivr.net/npm/mermaid@8.4.1/dist/mermaid.min.js"></script>
 | |
|   <!-- <script src="//localhost:9000/mermaid.js"></script> -->
 | |
|   <style>
 | |
|   .markdown-section {
 | |
|     max-width: 1200px;
 | |
|   }
 | |
|   </style>
 | |
| </head>
 | |
| <body>
 | |
|   <div id="app"></div>
 | |
|   <script>
 | |
|     window.$docsify = {
 | |
|       search: 'auto',
 | |
|       name: 'mermaid',
 | |
|       repo: 'https://github.com/knsv/mermaid',
 | |
|       loadSidebar: true,
 | |
|       mergeNavbar: true,
 | |
|       maxLevel: 4,
 | |
|       subMaxLevel: 2,
 | |
|       markdown: {
 | |
|         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);
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     var num = 0;
 | |
|     mermaid.initialize({ logLevel:0, startOnLoad: false, themeCSS:'.label { font-family: Source Sans Pro,Helvetica Neue,Arial,sans-serif; }' });
 | |
| 
 | |
|   </script>
 | |
|   <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
 | |
|   <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
 | |
| </body>
 | |
| </html>
 | 
