Created
June 4, 2021 22:15
-
-
Save mattduffield/7e837c125bd3f066d04f669a955d085a to your computer and use it in GitHub Desktop.
Mermaid Diagram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Dumber Gist</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> | |
<base href="/"> | |
</head> | |
<!-- | |
Dumber Gist uses dumber bundler, the default bundle file | |
is /dist/entry-bundle.js. | |
The starting module is pointed to "main" (data-main attribute on script) | |
which is your src/main.js. | |
--> | |
<body> | |
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script> | |
<script> | |
mermaid.initialize({ | |
startOnLoad:true, | |
securityLevel: 'loose', | |
flowdiagram: { | |
curve: 'basis' | |
} | |
}); | |
</script> | |
Here is one mermaid diagram: | |
<div class="mermaid"> | |
stateDiagram-v2 | |
[*] --> in[Initial] | |
in[Initial] --> [*]: cancel | |
in[Initial] --> awaiting_approval: signup | |
awaiting_approval --> approved: approve | |
approved --> [*] | |
</div> | |
<div class="mermaid"> | |
graph LR; | |
A-->B | |
B-->C; | |
A-->C; | |
click A callback "Tooltip for a callback" | |
click B "http://www.github.com" "This is a tooltip for a link" | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"aurelia": "latest" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Aurelia from 'aurelia'; | |
import { MyApp } from './my-app'; | |
Aurelia.app(MyApp).start(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Try to create a paired css/scss/sass/less file like my-app.scss. | |
It will be automatically imported based on convention. | |
--> | |
<!-- | |
There is no bundler config you can change in Dumber Gist to | |
turn on shadow DOM. | |
But you can turn shadow DOM on by adding a meta tag in every | |
html template: | |
<use-shadow-dom> | |
--> | |
<h1>${message}</h1> | |
<div class="mermaid"> | |
graph TD | |
A[Client] --> B[Load Balancer] | |
B --> C[Server01] | |
B --> D[Server02] | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class MyApp { | |
message = 'Hello Aurelia 2!'; | |
attaching() { | |
mermaid.initialize({startOnLoad:true}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment