mermaid 9.1.6 → 9.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/README.zh-CN.md +2 -2
- package/dist/mermaid.core.js +645 -468
- package/dist/mermaid.core.js.map +1 -1
- package/dist/mermaid.esm.min.mjs +1 -1
- package/dist/mermaid.esm.min.mjs.LICENSE.txt +1 -1
- package/dist/mermaid.esm.min.mjs.map +1 -1
- package/dist/mermaid.js +681 -471
- package/dist/mermaid.js.map +1 -1
- package/dist/mermaid.min.js +1 -1
- package/dist/mermaid.min.js.LICENSE.txt +1 -1
- package/dist/mermaid.min.js.map +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -15,20 +15,20 @@ English | [简体中文](./README.zh-CN.md)
|
|
|
15
15
|
## About
|
|
16
16
|
|
|
17
17
|
<!-- <Main description> -->
|
|
18
|
-
Mermaid is a JavaScript
|
|
18
|
+
Mermaid is a JavaScript-based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.
|
|
19
19
|
|
|
20
20
|
> Doc-Rot is a Catch-22 that Mermaid helps to solve.
|
|
21
21
|
|
|
22
22
|
Diagramming and documentation costs precious developer time and gets outdated quickly.
|
|
23
23
|
But not having diagrams or docs ruins productivity and hurts organizational learning.<br/>
|
|
24
|
-
Mermaid addresses this problem by enabling users to create easily modifiable diagrams
|
|
24
|
+
Mermaid addresses this problem by enabling users to create easily modifiable diagrams. It can also be made part of production scripts (and other pieces of code).<br/>
|
|
25
25
|
<br/>
|
|
26
26
|
|
|
27
27
|
Mermaid allows even non-programmers to easily create detailed diagrams through the [Mermaid Live Editor](https://mermaid.live/).<br/>
|
|
28
28
|
[Tutorials](./docs/Tutorials.md) has video tutorials.
|
|
29
29
|
Use Mermaid with your favorite applications, check out the list of [Integrations and Usages of Mermaid](./docs/integrations.md).
|
|
30
30
|
|
|
31
|
-
You can also use Mermaid within [GitHub](https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/) as well many of your other favorite applications
|
|
31
|
+
You can also use Mermaid within [GitHub](https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/) as well many of your other favorite applications—check out the list of [Integrations and Usages of Mermaid](./docs/integrations.md).
|
|
32
32
|
|
|
33
33
|
For a more detailed introduction to Mermaid and some of its more basic uses, look to the [Beginner's Guide](./docs/n00b-overview.md), [Usage](./docs/usage.md) and [Tutorials](./docs/Tutorials.md).
|
|
34
34
|
|
|
@@ -48,7 +48,7 @@ In our release process we rely heavily on visual regression tests using [applito
|
|
|
48
48
|
|
|
49
49
|
## Examples
|
|
50
50
|
|
|
51
|
-
__The following are some examples of the diagrams, charts and graphs that can be made using Mermaid. Click here jump into the [text syntax](https://mermaid-js.github.io/mermaid/#/n00b-syntaxReference).__
|
|
51
|
+
__The following are some examples of the diagrams, charts and graphs that can be made using Mermaid. Click here to jump into the [text syntax](https://mermaid-js.github.io/mermaid/#/n00b-syntaxReference).__
|
|
52
52
|
<!-- <Flowchart> -->
|
|
53
53
|
|
|
54
54
|
### Flowchart [<a href="https://mermaid-js.github.io/mermaid/#/flowchart">docs</a> - <a href="https://mermaid.live/edit#pako:eNpNkMtqwzAQRX9FzKqFJK7t1km8KDQP6KJQSLOLvZhIY1tgS0GWmgbb_165IaFaiXvOFTPqgGtBkEJR6zOv0Fj2scsU8-ft8I5G5Gw6fe339GN7tnrYaafE45WvRsLW3Ya4bKVWwzVe_xU-FfVsc9hR62rLwvw_2591z7Y3FuUwgYZMg1L4ObrRzMBW1FAGqb8KKtCLGWRq8Ko7CbS0FdJqA2mBdUsTQGf110VxSK1xdJM2EkuDzd2qNQrypQ7s5TQuXcrW-ie5VoUsx9yZ2seVtac2DYIRz0ppK3eccd0ErRTjD1XfyyRIomSBUUzJPMaXOBb8GC4XRfQcFmL-FEYIwzD8AggvcHE">live editor</a>]
|
|
@@ -125,7 +125,7 @@ gantt
|
|
|
125
125
|
classDiagram
|
|
126
126
|
Class01 <|-- AveryLongClass : Cool
|
|
127
127
|
<<Interface>> Class01
|
|
128
|
-
Class09 --> C2 : Where am
|
|
128
|
+
Class09 --> C2 : Where am I?
|
|
129
129
|
Class09 --* C3
|
|
130
130
|
Class09 --|> Class07
|
|
131
131
|
Class07 : equals()
|
|
@@ -143,7 +143,7 @@ class Class10 {
|
|
|
143
143
|
classDiagram
|
|
144
144
|
Class01 <|-- AveryLongClass : Cool
|
|
145
145
|
<<Interface>> Class01
|
|
146
|
-
Class09 --> C2 : Where am
|
|
146
|
+
Class09 --> C2 : Where am I?
|
|
147
147
|
Class09 --* C3
|
|
148
148
|
Class09 --|> Class07
|
|
149
149
|
Class07 : equals()
|
package/README.zh-CN.md
CHANGED
|
@@ -106,7 +106,7 @@ gantt
|
|
|
106
106
|
classDiagram
|
|
107
107
|
Class01 <|-- AveryLongClass : Cool
|
|
108
108
|
<<Interface>> Class01
|
|
109
|
-
Class09 --> C2 : Where am
|
|
109
|
+
Class09 --> C2 : Where am I?
|
|
110
110
|
Class09 --* C3
|
|
111
111
|
Class09 --|> Class07
|
|
112
112
|
Class07 : equals()
|
|
@@ -124,7 +124,7 @@ class Class10 {
|
|
|
124
124
|
classDiagram
|
|
125
125
|
Class01 <|-- AveryLongClass : Cool
|
|
126
126
|
<<Interface>> Class01
|
|
127
|
-
Class09 --> C2 : Where am
|
|
127
|
+
Class09 --> C2 : Where am I?
|
|
128
128
|
Class09 --* C3
|
|
129
129
|
Class09 --|> Class07
|
|
130
130
|
Class07 : equals()
|