mermaid/docs/config/usage.md

394 lines
13 KiB
Markdown
Raw Normal View History

2022-10-18 00:32:47 +02:00
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT. Please edit the corresponding file in src/docs.
2022-09-05 16:18:38 +02:00
2022-09-03 05:43:37 +02:00
# Usage
Mermaid is a JavaScript tool that makes use of a Markdown based syntax to render customizable diagrams, charts and visualizations.
Diagrams can be re-rendered/modified by modifying their descriptions.
### CDN
<https://unpkg.com/mermaid/>
Please note that you can switch versions through the dropdown box at the top right.
## Using mermaid
2022-10-15 05:50:11 +02:00
For the majority of users, Using the [Live Editor](https://mermaid.live/) would be sufficient, however you may also opt to deploy mermaid as a dependency or using the [Mermaid API](setup/README).
2022-09-03 05:43:37 +02:00
We have compiled some Video [Tutorials](./Tutorials.md) on how to use the mermaid Live Editor.
**Installing and Hosting Mermaid on a Webpage**
**Using the npm package**
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. At this point, you can add mermaid as a dev dependency using this command:
yarn add --dev mermaid
5. Alternatively, you can also deploy mermaid using the script tag in an HTML file with mermaid diagram descriptions.
as is shown in the example below
**Hosting mermaid on a web page.**
2022-10-15 05:50:11 +02:00
> Note:This topic explored in greater depth in the [User Guide for Beginners](../intro/n00b-gettingStarted)
2022-09-03 05:43:37 +02:00
2022-10-08 03:27:19 +02:00
The easiest way to integrate mermaid on a web page requires two elements:
2022-09-03 05:43:37 +02:00
2022-10-08 03:27:19 +02:00
- A graph definition, inside `<pre>` tags labeled `class=mermaid`. Example:
2022-09-04 21:55:28 +02:00
```html
<pre class="mermaid">
graph LR
A --- B
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
</pre>
```
2022-09-03 05:43:37 +02:00
2022-10-08 03:27:19 +02:00
- Inclusion of the mermaid address in the html page body using a `script` tag as an ESM import, and the `mermaidAPI` call.
Example:
```html
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
```
**Following these directions, mermaid starts at page load and (when the page has loaded) it will locate the graph definitions inside the `pre` tags with `class="mermaid"` and return diagrams in SVG form, following given definitions.**
2022-09-03 05:43:37 +02:00
## Simple full example:
```html
<!DOCTYPE html>
<html lang="en">
2022-09-03 10:00:16 +02:00
<head>
<meta charset="utf-8" />
</head>
<body>
2022-09-04 21:55:28 +02:00
<pre class="mermaid">
graph LR
A --- B
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
</pre>
2022-10-08 03:27:19 +02:00
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.esm.min.mjs';
2022-09-03 10:00:16 +02:00
mermaid.initialize({ startOnLoad: true });
</script>
</body>
2022-09-03 05:43:37 +02:00
</html>
```
## Notes:
An id attribute is also added to mermaid tags without one.
Mermaid can load multiple diagrams, in the same page.
> Try it out, save this code as HTML and load it using any browser.(Except Internet Explorer, please don't use Internet Explorer.)
## Enabling Click Event and Tags in Nodes
A `securityLevel` configuration has to first be cleared, `securityLevel` sets the level of trust for the parsed diagrams and limits click functionality. This was introduce in version 8.2 as a security improvement, aimed at preventing malicious use.
**It is the site owner's responsibility to discriminate between trustworthy and untrustworthy user-bases and we encourage the use of discretion.**
## securityLevel
2022-09-03 08:51:42 +02:00
| Parameter | Description | Type | Required | Values |
| ------------- | --------------------------------- | ------ | -------- | ------------------------------------------ |
2022-09-03 05:43:37 +02:00
| securityLevel | Level of trust for parsed diagram | String | Required | 'sandbox', 'strict', 'loose', 'antiscript' |
Values:
2022-09-03 10:00:16 +02:00
- **strict**: (**default**) tags in text are encoded, click functionality is disabled
- **loose**: tags in text are allowed, click functionality is enabled
- **antiscript**: html tags in text are allowed, (only script element is removed), click functionality is enabled
- **sandbox**: With this security level all rendering takes place in a sandboxed iframe. This prevent any JavaScript running in the context. This may hinder interactive functionality of the diagram like scripts, popups in sequence diagram or links to other tabs/targets etc.
2022-09-03 05:43:37 +02:00
2022-10-15 05:50:11 +02:00
::: note
2022-09-03 05:43:37 +02:00
This changes the default behaviour of mermaid so that after upgrade to 8.2, unless the `securityLevel` is not changed, tags in flowcharts are encoded as tags and clicking is disabled.
2022-09-03 08:51:42 +02:00
**sandbox** security level is still in the beta version.
2022-10-15 05:50:11 +02:00
:::
2022-09-03 05:43:37 +02:00
**If you are taking responsibility for the diagram source security you can set the `securityLevel` to a value of your choosing . This allows clicks and tags are allowed.**
**To change `securityLevel`, you have to call `mermaidAPI.initialize`:**
```javascript
mermaidAPI.initialize({
2022-09-03 10:00:16 +02:00
securityLevel: 'loose',
2022-09-03 05:43:37 +02:00
});
```
### Labels out of bounds
If you use dynamically loaded fonts that are loaded through CSS, such as Google fonts, mermaid should wait for the
whole page to load (dom + assets, particularly the fonts file).
```javascript
2022-09-03 08:51:42 +02:00
$(document).load(function () {
2022-09-03 10:00:16 +02:00
mermaid.initialize();
2022-09-03 05:43:37 +02:00
});
```
or
```javascript
2022-09-03 08:51:42 +02:00
$(document).ready(function () {
2022-09-03 10:00:16 +02:00
mermaid.initialize();
2022-09-03 05:43:37 +02:00
});
```
Not doing so will most likely result in mermaid rendering graphs that have labels out of bounds. The default integration in mermaid uses the window.load event to start rendering.
If your page has other fonts in its body those might be used instead of the mermaid font. Specifying the font in your styling is a workaround for this.
```css
div.mermaid {
2022-09-03 10:00:16 +02:00
font-family: 'trebuchet ms', verdana, arial;
2022-09-03 05:43:37 +02:00
}
```
### Calling `mermaid.init`
By default, `mermaid.init` will be called when the document is ready, finding all elements with
`class="mermaid"`. If you are adding content after mermaid is loaded, or otherwise need
finer-grained control of this behavior, you can call `init` yourself with:
2022-09-03 10:00:16 +02:00
- a configuration object
- some nodes, as
- a node
- an array-like of nodes
- or W3C selector that will find your nodes
2022-09-03 05:43:37 +02:00
Example:
```javascript
2022-09-03 08:51:42 +02:00
mermaid.init({ noteMargin: 10 }, '.someOtherClass');
2022-09-03 05:43:37 +02:00
```
Or with no config object, and a jQuery selection:
```javascript
2022-09-03 08:51:42 +02:00
mermaid.init(undefined, $('#someId .yetAnotherClass'));
2022-09-03 05:43:37 +02:00
```
2022-10-15 05:50:11 +02:00
::: warning
2022-09-03 05:43:37 +02:00
This type of integration is deprecated. Instead the preferred way of handling more complex integration is to use the mermaidAPI instead.
2022-10-15 05:50:11 +02:00
:::
2022-09-03 05:43:37 +02:00
## Usage with webpack
mermaid fully supports webpack. Here is a [working demo](https://github.com/mermaidjs/mermaid-webpack-demo).
## API usage
The main idea of the API is to be able to call a render function with the graph definition as a string. The render function
will render the graph and call a callback with the resulting SVG code. With this approach it is up to the site creator to
fetch the graph definition from the site (perhaps from a textarea), render it and place the graph somewhere in the site.
The example below show an outline of how this could be used. The example just logs the resulting SVG to the JavaScript console.
```html
2022-10-08 03:40:54 +02:00
<script type="module">
import mermaid from './mermaid.mjs';
2022-09-03 10:00:16 +02:00
mermaid.mermaidAPI.initialize({ startOnLoad: false });
2022-10-09 16:08:32 +02:00
$(async function () {
2022-09-03 10:00:16 +02:00
// Example of using the API var
element = document.querySelector('#graphDiv');
2022-10-09 16:08:32 +02:00
const insertSvg = function (svgCode, bindFunctions) {
2022-09-03 10:00:16 +02:00
element.innerHTML = svgCode;
};
2022-10-09 16:08:32 +02:00
const graphDefinition = 'graph TB\na-->b';
const graph = await mermaid.mermaidAPI.render('graphDiv', graphDefinition, insertSvg);
2022-09-03 10:00:16 +02:00
});
2022-09-03 05:43:37 +02:00
</script>
```
### Binding events
Sometimes the generated graph also has defined interactions like tooltip and click events. When using the API one must
add those events after the graph has been inserted into the DOM.
The example code below is an extract of what mermaid does when using the API. The example shows how it is possible to
bind events to an SVG when using the API for rendering.
```javascript
2022-09-03 08:51:42 +02:00
var insertSvg = function (svgCode, bindFunctions) {
2022-09-03 10:00:16 +02:00
element.innerHTML = svgCode;
if (typeof callback !== 'undefined') {
callback(id);
}
bindFunctions(element);
2022-09-03 05:43:37 +02:00
};
var id = 'theGraph';
2022-09-03 08:51:42 +02:00
mermaidAPI.render(id, txt, insertSvg, element);
2022-09-03 05:43:37 +02:00
```
2022-09-05 16:18:38 +02:00
1. The graph is generated using the render call.
2. After generation the render function calls the provided callback function, in this case it's called insertSvg.
3. The callback function is called with two parameters, the SVG code of the generated graph and a function. This function binds events to the SVG **after** it is inserted into the DOM.
4. Insert the SVG code into the DOM for presentation.
5. Call the binding function that binds the events.
2022-09-03 05:43:37 +02:00
## Example of a marked renderer
This is the renderer used for transforming the documentation from Markdown to html with mermaid diagrams in the html.
```javascript
var renderer = new marked.Renderer();
renderer.code = function (code, language) {
2022-09-03 10:00:16 +02:00
if (code.match(/^sequenceDiagram/) || code.match(/^graph/)) {
2022-09-04 21:55:28 +02:00
return '<pre class="mermaid">' + code + '</pre>';
2022-09-03 10:00:16 +02:00
} else {
return '<pre><code>' + code + '</code></pre>';
}
2022-09-03 05:43:37 +02:00
};
```
Another example in CoffeeScript that also includes the mermaid script tag in the generated markup.
```coffee
marked = require 'marked'
module.exports = (options) ->
hasMermaid = false
renderer = new marked.Renderer()
renderer.defaultCode = renderer.code
renderer.code = (code, language) ->
if language is 'mermaid'
html = ''
if not hasMermaid
hasMermaid = true
html += '<script src="'+options.mermaidPath+'"></script>'
2022-09-04 21:55:28 +02:00
html + '<pre class="mermaid">'+code+'</pre>'
2022-09-03 05:43:37 +02:00
else
@defaultCode(code, language)
renderer
```
## Advanced usage
**Syntax validation without rendering (Work in Progress)**
The **mermaid.parse(txt)** function validates graph definitions without rendering a graph. **[This function is still a work in progress](https://github.com/mermaid-js/mermaid/issues/1066), find alternatives below.**
The function **mermaid.parse(txt)**, takes a text string as an argument and returns true if the definition follows mermaid's syntax and
false if it does not. The parseError function will be called when the parse function returns false.
When the parser encounters invalid syntax the **mermaid.parseError** function is called. It is possible to override this
function in order to handle the error in an application-specific way.
The code-example below in meta code illustrates how this could work:
```javascript
2022-09-03 08:51:42 +02:00
mermaid.parseError = function (err, hash) {
2022-09-03 10:00:16 +02:00
displayErrorInGui(err);
2022-09-03 05:43:37 +02:00
};
2022-09-03 08:51:42 +02:00
var textFieldUpdated = function () {
2022-09-03 10:00:16 +02:00
var textStr = getTextFromFormField('code');
2022-09-03 05:43:37 +02:00
2022-09-03 10:00:16 +02:00
if (mermaid.parse(textStr)) {
reRender(textStr);
}
2022-09-03 05:43:37 +02:00
};
bindEventHandler('change', 'code', textFieldUpdated);
```
**Alternative to mermaid.parse():**
One effective and more future-proof method of validating your graph definitions, is to paste and render them via the [Mermaid Live Editor](https://mermaid.live/). This will ensure that your code is compliant with the syntax of Mermaid's most recent version.
## Configuration
Mermaid takes a number of options which lets you tweak the rendering of the diagrams. Currently there are three ways of
setting the options in mermaid.
2022-09-05 16:18:38 +02:00
1. Instantiation of the configuration using the initialize call
2. _Using the global mermaid object_ - **Deprecated**
3. _using the global mermaid_config object_ - **Deprecated**
4. Instantiation of the configuration using the **mermaid.init** call- **Deprecated**
2022-09-03 05:43:37 +02:00
The list above has two ways too many of doing this. Three are deprecated and will eventually be removed. The list of
2022-10-15 05:50:11 +02:00
configuration objects are described [in the mermaidAPI documentation](setup/README).
2022-09-03 05:43:37 +02:00
## Using the `mermaidAPI.initialize`/`mermaid.initialize` call
The future proof way of setting the configuration is by using the initialization call to mermaid or mermaidAPI depending
on what kind of integration you use.
```html
<script src="../dist/mermaid.js"></script>
<script>
2022-10-09 16:08:32 +02:00
let config = { startOnLoad: true, flowchart: { useMaxWidth: false, htmlLabels: true } };
2022-09-03 10:00:16 +02:00
mermaid.initialize(config);
2022-09-03 05:43:37 +02:00
</script>
```
2022-10-15 05:50:11 +02:00
::: tip
2022-09-03 05:43:37 +02:00
This is the preferred way of configuring mermaid.
2022-10-15 05:50:11 +02:00
:::
2022-09-03 05:43:37 +02:00
### The following methods are deprecated and are kept only for backwards compatibility.
## Using the mermaid object
Is it possible to set some configuration via the mermaid object. The two parameters that are supported using this
approach are:
2022-09-03 10:00:16 +02:00
- mermaid.startOnLoad
- mermaid.htmlLabels
2022-09-03 05:43:37 +02:00
```javascript
mermaid.startOnLoad = true;
```
2022-10-15 05:50:11 +02:00
::: warning
2022-09-03 05:43:37 +02:00
This way of setting the configuration is deprecated. Instead the preferred way is to use the initialize method. This functionality is only kept for backwards compatibility.
2022-10-15 05:50:11 +02:00
:::
2022-09-03 05:43:37 +02:00
2022-09-03 09:35:47 +02:00
## Using the mermaid_config
2022-09-03 05:43:37 +02:00
It is possible to set some configuration via the mermaid object. The two parameters that are supported using this
approach are:
2022-09-03 10:00:16 +02:00
- mermaid_config.startOnLoad
- mermaid_config.htmlLabels
2022-09-03 05:43:37 +02:00
```javascript
mermaid_config.startOnLoad = true;
```
2022-10-15 05:50:11 +02:00
::: warning
2022-09-03 05:43:37 +02:00
This way of setting the configuration is deprecated. Instead the preferred way is to use the initialize method. This functionality is only kept for backwards compatibility.
2022-10-15 05:50:11 +02:00
:::
2022-09-03 05:43:37 +02:00
## Using the mermaid.init call
To set some configuration via the mermaid object. The two parameters that are supported using this approach are:
2022-09-03 10:00:16 +02:00
- mermaid_config.startOnLoad
- mermaid_config.htmlLabels
2022-09-03 05:43:37 +02:00
```javascript
mermaid_config.startOnLoad = true;
```
2022-10-15 05:50:11 +02:00
::: warning
2022-09-03 05:43:37 +02:00
This way of setting the configuration is deprecated. Instead the preferred way is to use the initialize method. This functionality is only kept for backwards compatibility.
2022-10-15 05:50:11 +02:00
:::