mermaid/docs
Ashish Jain 14464f9fba merge develop to current branch 2022-02-24 19:24:42 +01:00
..
developer-docs getting there 2022-02-10 20:32:21 +01:00
diagrams-and-syntax-and-examples docs: removed beta references to the flowchart graph type. 2022-02-17 17:45:13 +01:00
img getting there 2022-02-10 20:32:21 +01:00
landing getting there 2022-02-10 20:32:21 +01:00
.nojekyll getting there 2022-02-10 20:32:21 +01:00
8.6.0_docs.md getting there 2022-02-10 20:32:21 +01:00
CHANGELOG.md getting there 2022-02-10 20:32:21 +01:00
Configuration.md getting there 2022-02-10 20:32:21 +01:00
README.md docs: adding info on sandbox security to readme 2022-02-17 18:20:43 +01:00
SUMMARY.md getting there 2022-02-10 20:32:21 +01:00
Setup.md Merge branch 'master' into develop 2022-02-17 18:25:00 +01:00
Tutorials.md getting there 2022-02-10 20:32:21 +01:00
_navbar.md getting there 2022-02-10 20:32:21 +01:00
_sidebar.md getting there 2022-02-10 20:32:21 +01:00
breakingChanges.md getting there 2022-02-10 20:32:21 +01:00
classDiagram.md getting there 2022-02-10 20:32:21 +01:00
development.md getting there 2022-02-10 20:32:21 +01:00
directives.md getting there 2022-02-10 20:32:21 +01:00
entityRelationshipDiagram.md getting there 2022-02-10 20:32:21 +01:00
examples.md getting there 2022-02-10 20:32:21 +01:00
faq.md getting there 2022-02-10 20:32:21 +01:00
flowchart.md Merge pull request #2740 from Guy-Adler/feature/2391_double_circle 2022-02-24 18:45:50 +01:00
gantt.md getting there 2022-02-10 20:32:21 +01:00
index.html getting there 2022-02-10 20:32:21 +01:00
integrations.md docs: Add Gitea (#2731) 2022-02-15 13:45:42 -08:00
integrations.md~HEAD chore: merge branch 'develop' into 1252_gitgraph_reinvented 2022-02-17 17:48:48 +01:00
introduction.md getting there 2022-02-10 20:32:21 +01:00
mermaidCLI.md getting there 2022-02-10 20:32:21 +01:00
n00b-advanced.md getting there 2022-02-10 20:32:21 +01:00
n00b-gettingStarted.md Fixes syntax error in n00b-gettingStarted.md (#2735) 2022-02-16 12:21:58 -08:00
n00b-overview.md getting there 2022-02-10 20:32:21 +01:00
n00b-syntaxReference.md getting there 2022-02-10 20:32:21 +01:00
newDiagram.md getting there 2022-02-10 20:32:21 +01:00
pie.md docs: add showData config to Pie Chart (#2758) 2022-02-20 12:23:34 -08:00
requirementDiagram.md getting there 2022-02-10 20:32:21 +01:00
security.md getting there 2022-02-10 20:32:21 +01:00
sequenceDiagram.md fix(2689): use correct default sans-serif fonts for actors and tasks 2022-02-15 14:21:04 +01:00
sequenceDiagram.md~HEAD chore: merge branch 'develop' into 1252_gitgraph_reinvented 2022-02-17 17:48:48 +01:00
stateDiagram.md getting there 2022-02-10 20:32:21 +01:00
theme.css getting there 2022-02-10 20:32:21 +01:00
theme_themed.css getting there 2022-02-10 20:32:21 +01:00
theming.md Update theming.md 2022-02-21 03:27:22 -08:00
upgrading.md getting there 2022-02-10 20:32:21 +01:00
usage.md getting there 2022-02-10 20:32:21 +01:00
user-journey.md getting there 2022-02-10 20:32:21 +01:00

README.md

About Mermaid

Mermaid lets you create diagrams and visualizations using text and code.

It is a Javascript based diagramming and charting tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically.

If you are familiar with Markdown you should have no problem learning Mermaid's Syntax.

banner

Build Status NPM Coverage Status Join our Slack! This project is using Percy.io for visual regression testing.

banner

The main purpose of Mermaid is to help with Visualizing Documentation, and helping it catch up with Development.

Documentation-Rot is a Catch-22 that Mermaid helps to solve.

Diagramming and Documentation cost precious developer time and get outdated quickly. However, not having diagrams or documentation ruins productivity and hampers organizational learning.

Mermaid addresses this Catch-22 situation by reducing the time, effort and tooling that is required to create modifiable diagrams and charts which in turn results in smarter and more reusable content. Mermaid, as a text-based diagramming tool allows for quick and easy updates and makes documentation much easier. It can also be included in production scripts and other pieces of code as per requirement.

Mermaid is a Diagramming tool for everyone.

Even non-programmers can create diagrams through the Mermaid Live Editor, Visit the Tutorials Page for the Live Editor video tutorials.

Many editors, wikis and other tools also have mermaid integrations and plugins, making it easy to start using mermaid. A few of those are described in Simple start to write diagrams.

For a more detailed introduction to Mermaid and some of it's basic uses, refer to Overview for Beginners and Usage.

🌐 CDN | 📖 Documentation | 🙌 Contribution | 📜 Version Log | 🔌 Plug-Ins

🖖 Keep a steady pulse: mermaid needs more Collaborators, Read More.

🏆 Mermaid was nominated and won the JS Open Source Awards (2019) in the category "The most exciting use of technology"!!!

Thanks to all involved, people committing pull requests, people answering questions and special thanks to Tyler Long who is helping me maintain the project 🙏

Diagram Types

Flowchart

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

Flowchart

Sequence diagram

sequenceDiagram
    participant Alice
    participant Bob
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts <br/>prevail!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!

Sequence diagram

Gantt diagram

gantt
dateFormat  YYYY-MM-DD
title Adding GANTT diagram to mermaid
excludes weekdays 2014-01-10

section A section
Completed task            :done,    des1, 2014-01-06,2014-01-08
Active task               :active,  des2, 2014-01-09, 3d
Future task               :         des3, after des2, 5d
Future task2               :         des4, after des3, 5d

Gantt diagram

Class diagram

classDiagram
Class01 <|-- AveryLongClass : Cool
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 --> C2 : Where am i?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
Class08 <--> C2: Cool label

Class diagram

Git graph - experimental

gitGraph:
options
{
    "nodeSpacing": 150,
    "nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch

Git graph

Entity Relationship Diagram - experimental

erDiagram
    CUSTOMER ||--o{ ORDER : places
    ORDER ||--|{ LINE-ITEM : contains
    CUSTOMER }|..|{ DELIVERY-ADDRESS : uses

ER diagram

User Journey Diagram

journey
    title My working day
    section Go to work
      Make tea: 5: Me
      Go upstairs: 3: Me
      Do work: 1: Me, Cat
    section Go home
      Go downstairs: 5: Me
      Sit down: 5: Me

Journey diagram

Installation

In depth guides and examples can be found at Getting Started and Usage.

It would also be helpful to learn more about mermaid's Syntax.

CDN

https://unpkg.com/mermaid@<version>/dist/

To select a version:

Replace <version> with the desired version number.

Latest Version: https://unpkg.com/browse/mermaid@8.8.0/

Deploying Mermaid

To Deploy Mermaid:

  1. You will need to install node v16, which would have npm
  2. Download yarn using npm
  3. Enter the following command: yarn add mermaid
  4. You can then add mermaid as a dev dependency using this command: yarn add --dev mermaid

Mermaid API:

To deploy mermaid without a bundler, one can insert a script tag with an absolute address and a mermaidAPI call into the HTML like so:

<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});
</script>

Doing so will command the mermaid parser to look for the <div> tags with class="mermaid". From these tags mermaid will try to read the diagram/chart definitions and render them into svg charts.

Examples can be found at Other examples

Sibling projects

Request for Assistance

Things are piling up and I have a hard time keeping up. It would be great if we could form a core team of developers to cooperate with the future development of mermaid.

As part of this team you would get write access to the repository and would represent the project when answering questions and issues.

Together we could continue the work with things like:

  • Adding more types of diagrams like mindmaps, ert diagrams, etc.
  • Improving existing diagrams

Don't hesitate to contact me if you want to get involved!

For contributors

Setup

yarn install

Build

yarn build:watch

Lint

yarn lint

We use eslint. We recommend you to install editor plugins to get real time lint result.

Test

yarn test

Manual test in browser: open dist/index.html

Release

For those who have the permission to do so:

Update version number in package.json.

npm publish

The above command generates files into the dist folder and publishes them to npmjs.org.

Security and safe diagrams

For public sites, it can be precarious to retrieve text from users on the internet, storing that content for presentation in a browser at a later stage. The reason is that the user content can contain embedded malicious scripts that will run when the data is presented. For Mermaid this is a risk, specially as mermaid diagrams contain many characters that are used in html which makes the standard sanitation unusable as it also breaks the diagrams. We still make an effort to sanitise the incoming code and keep refining the process but it is hard to guarantee that there are no loop holes.

As an extra level of security for sites with external users we are happy to introduce a new security level in which the diagram is rendered in a sandboxed iframe preventing javascript in the code from being executed. This is a great step forward for better security.

Unfortunately you can not have a cake and eat it at the same time which in this case means that some of the interactive functionality gets blocked along with the possible malicious code.

Credits

Many thanks to the d3 and dagre-d3 projects for providing the graphical layout and drawing libraries!

Thanks also to the js-sequence-diagram project for usage of the grammar for the sequence diagrams. Thanks to Jessica Peter for the inspiration and for the starting point of gantt rendering.

Mermaid was created by Knut Sveidqvist for easier documentation.

Here is the full list of the projects contributors.