-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
105 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,10 @@ | |
href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" | ||
rel="stylesheet" | ||
|
@@ -84,12 +88,81 @@ | |
</head> | ||
|
||
<body> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Default] --> A@{ icon: 'fa:bell', form: 'rounded' } | ||
|
||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Style] --> A@{ icon: 'fa:bell', form: 'rounded' } | ||
style A fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'fa:bell', form: 'rounded' } | ||
A:::AClass | ||
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'logos:aws', form: 'rounded' } | ||
|
||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Default] --> A@{ icon: 'fa:bell', form: 'square' } | ||
|
||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Style] --> A@{ icon: 'fa:bell', form: 'square' } | ||
style A fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'fa:bell', form: 'square' } | ||
A:::AClass | ||
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'logos:aws', form: 'square' } | ||
|
||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Default] --> A@{ icon: 'fa:bell', form: 'circle' } | ||
|
||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Style] --> A@{ icon: 'fa:bell', form: 'circle' } | ||
style A fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'fa:bell', form: 'circle' } | ||
A:::AClass | ||
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Class] --> A@{ icon: 'logos:aws', form: 'circle' } | ||
A:::AClass | ||
classDef AClass fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
flowchart LR | ||
nA[Style] --> A@{ icon: 'logos:aws', form: 'circle' } | ||
style A fill:#f9f,stroke:#333,stroke-width:4px | ||
</pre> | ||
<pre id="diagram4" class="mermaid2"> | ||
kanban | ||
id2[In progress] | ||
docs[Create Blog about the new diagram]@{ priority: 'Very Low', ticket: MC-2037, assigned: 'knsv' } | ||
</pre> | ||
<pre id="diagram4" class="mermaid"> | ||
<pre id="diagram4" class="mermaid2"> | ||
--- | ||
config: | ||
kanban: | ||
|
@@ -118,6 +191,30 @@ | |
<script type="module"> | ||
import mermaid from './mermaid.esm.mjs'; | ||
import layouts from './mermaid-layout-elk.esm.mjs'; | ||
|
||
const staticBellIconPack = { | ||
prefix: 'fa6-regular', | ||
icons: { | ||
bell: { | ||
body: '<path fill="currentColor" d="M224 0c-17.7 0-32 14.3-32 32v19.2C119 66 64 130.6 64 208v25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416h400c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6c-28.3-35.5-43.8-79.6-43.8-125V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32m0 96c61.9 0 112 50.1 112 112v25.4c0 47.9 13.9 94.6 39.7 134.6H72.3c25.8-40 39.7-86.7 39.7-134.6V208c0-61.9 50.1-112 112-112m64 352H160c0 17 6.7 33.3 18.7 45.3S207 512 224 512s33.3-6.7 45.3-18.7S288 465 288 448"/>', | ||
width: 448, | ||
}, | ||
}, | ||
width: 512, | ||
height: 512, | ||
}; | ||
|
||
mermaid.registerIconPacks([ | ||
{ | ||
name: 'logos', | ||
loader: () => | ||
fetch('https://unpkg.com/@iconify-json/logos@1/icons.json').then((res) => res.json()), | ||
}, | ||
{ | ||
name: 'fa', | ||
loader: () => staticBellIconPack, | ||
}, | ||
]); | ||
mermaid.registerLayoutLoaders(layouts); | ||
mermaid.parseError = function (err, hash) { | ||
console.error('Mermaid error: ', err); | ||
|
@@ -135,7 +232,7 @@ | |
// layout: 'dagre', | ||
// layout: 'elk', | ||
// layout: 'fixed', | ||
htmlLabels: false, | ||
// htmlLabels: false, | ||
flowchart: { titleTopMargin: 10 }, | ||
// fontFamily: 'Caveat', | ||
// fontFamily: 'Kalam', | ||
|
This file contains 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
This file contains 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
This file contains 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