summaryrefslogtreecommitdiffstats
path: root/docs/content/en/content-management/diagrams.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/content-management/diagrams.md')
-rw-r--r--docs/content/en/content-management/diagrams.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/content/en/content-management/diagrams.md b/docs/content/en/content-management/diagrams.md
index c95548249..e664dd501 100644
--- a/docs/content/en/content-management/diagrams.md
+++ b/docs/content/en/content-management/diagrams.md
@@ -1,6 +1,5 @@
---
title: Diagrams
-LinkTitle: Diagrams
description: Use fenced code blocks and markdown render hooks to display diagrams.
categories: [content management]
keywords: [diagrams,drawing]
@@ -58,8 +57,8 @@ And then include this snippet at the bottom of the content template (**Note**: b
```go-html-template
{{ if .Page.Store.Get "hasMermaid" }}
- <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
- <script>
+ <script type="module">
+ import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
{{ end }}
@@ -67,6 +66,7 @@ And then include this snippet at the bottom of the content template (**Note**: b
With that you can use the `mermaid` language in Markdown code blocks:
+````
```mermaid
sequenceDiagram
participant Alice
@@ -80,6 +80,7 @@ sequenceDiagram
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
+````
## Goat Ascii Diagram Examples