Skip to content

Instantly share code, notes, and snippets.

@mattduffield
Created June 8, 2021 17:47
Show Gist options
  • Save mattduffield/73b70817d33cde3da085378187663303 to your computer and use it in GitHub Desktop.
Save mattduffield/73b70817d33cde3da085378187663303 to your computer and use it in GitHub Desktop.
Subscriber Signup Diagram
<!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>
{
"dependencies": {
"aurelia": "latest"
}
}
import Aurelia from 'aurelia';
import { MyApp } from './my-app';
Aurelia.app(MyApp).start();
<!--
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>
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