mermaid/docs/getting-started/usage.md

413 lines
12 KiB
Markdown
Raw Normal View History

---
sort: 2
title: API-Usage
---
2019-07-12 20:40:54 +02:00
# Usage
mermaid is a javascript tool that makes use of a markdown based syntax to render customizable diagrams and charts, for greater speed and ease.
2020-07-24 07:36:16 +02:00
2020-08-19 19:47:55 +02:00
mermaid was made to help Documentation catch up with Development, in quickly changing projects.
2020-07-24 07:36:16 +02:00
2020-07-25 07:51:27 +02:00
### CDN
[https://unpkg.com/mermaid/](https://unpkg.com/mermaid/)
2020-07-25 07:51:27 +02:00
Please note that you can switch versions through the dropdown box at the top right.
2020-07-24 07:36:16 +02:00
## Using mermaid
For the majority of beginners, using the live editor or suppoting mermaid on a webpage would cover their uses for mermaid.
2020-07-24 07:36:16 +02:00
2020-07-25 07:51:27 +02:00
## Installing and Hosting mermaid on a webpage
2019-07-12 20:40:54 +02:00
### Using the npm package
2019-07-12 20:40:54 +02:00
```
2020-07-23 09:15:44 +02:00
1.You will need to insall node v10 or 12, which would have npm.
2020-07-19 03:04:03 +02:00
2. download yarn using npm.
2020-07-23 09:15:44 +02:00
3. enter the following command:
2020-07-19 03:04:03 +02:00
yarn add mermaid
4. At this point, you can add mermaid as a dev dependency using this command:
2020-07-19 03:04:03 +02:00
yarn add --dev mermaid
2020-07-23 09:15:44 +02:00
2020-07-26 04:08:11 +02:00
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
2019-07-12 20:40:54 +02:00
```
2020-07-25 07:51:27 +02:00
## Hosting mermaid on a web page.
2019-07-12 20:40:54 +02:00
```note
This topic explored in greater depth in the [User Guide for Beginners](./n00b-gettingStarted.md)
```
2019-07-12 20:40:54 +02:00
2020-07-26 04:08:11 +02:00
The easiest way to integrate mermaid on a web page requires three elements:
1. Inclusion of the mermaid address in the html page using a `script` tag, in the `src` section.Example:
2019-07-12 20:40:54 +02:00
2020-07-25 07:51:27 +02:00
`<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>`
2020-07-26 04:08:11 +02:00
2. The `mermaidAPI` call, in a separate `script` tag. Example:
2019-07-12 20:40:54 +02:00
2020-07-25 07:51:27 +02:00
`<script>mermaid.initialize({startOnLoad:true});</script>`
3. A graph definition, inside `<div>` tags labeled `class=mermaid`. Example:
```html
2020-07-26 04:08:11 +02:00
<div class="mermaid">
2020-07-19 05:20:48 +02:00
graph LR
A --- B
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
2020-07-26 04:08:11 +02:00
</div>
```
2019-07-12 20:40:54 +02:00
2020-07-25 07:51:27 +02:00
**If these things are in place mermaid starts at the page load event and when fired (when the page has loaded) it will
locate the graph definitions inside the `div` tags with `class="mermaid"` on the page and transform them to svg charts or diagrams.**
2019-07-12 20:40:54 +02:00
2020-07-19 03:04:03 +02:00
## Simple full example:
2019-07-12 20:40:54 +02:00
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<div class="mermaid">
graph LR
A --- B
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
</div>
2020-07-24 07:36:16 +02:00
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
2020-07-19 05:20:48 +02:00
<script>mermaid.initialize({startOnLoad:true});</script>
2019-07-12 20:40:54 +02:00
</body>
</html>
```
2020-07-19 05:11:48 +02:00
## Notes:
2020-07-26 04:04:11 +02:00
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.)
2020-07-24 08:04:39 +02:00
## To enable click event and tags in nodes
2020-07-24 08:04:39 +02:00
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.
2020-07-19 05:11:48 +02:00
**It is the site owner's responsibility to discriminate between trustworthy and untrustworthy user-bases and we encourage the use of discretion.**
2020-07-26 04:04:11 +02:00
## securityLevel
| Parameter | Description | Type | Required | Values |
| ------------- | --------------------------------- | ------ | -------- | ------------------------- |
| securitylevel | Level of trust for parsed diagram | String | Required | Strict, Loose, antiscript |
\*\*Notes:
- **strict**: (**default**) tags in text are encoded, click functionality is disabeled
- **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
2020-07-19 05:11:48 +02:00
```note
This changes the default behaviour of mermaid so that after upgrade to 8.2, if the `securityLevel` is not configured, tags in flowcharts are encoded as tags and clicking is prohibited.
```
2020-07-19 05:11:48 +02:00
**If you are taking resposibility for the diagram source security you can set the `securityLevel` to a value of your choosing . By doing this clicks and tags are allowed.**
2020-07-26 04:04:11 +02:00
## To chage `securityLevel` with `mermaidAPI.initialize`:
2020-07-19 05:11:48 +02:00
```javascript
mermaidAPI.initialize({
securityLevel: 'loose'
});
2020-07-26 04:04:11 +02:00
```
2020-07-19 03:04:03 +02:00
2020-07-25 07:51:27 +02:00
### Labels out of bounds
2019-07-12 20:40:54 +02:00
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).
2019-07-12 20:40:54 +02:00
```javascript
$(document).load(function() {
mermaid.initialize();
});
```
or
```javascript
$(document).ready(function() {
mermaid.initialize();
});
```
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.
```
div.mermaid {
font-family: 'trebuchet ms', verdana, arial;
}
```
# This likely requires a `script.js` file, separate from the `HTML`.
2020-07-26 04:14:06 +02:00
2019-07-12 20:40:54 +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:
- a configuration object
- some nodes, as
- a node
- an array-like of nodes
2019-07-12 20:40:54 +02:00
- or W3C selector that will find your nodes
Example:
```javascript
mermaid.init({noteMargin: 10}, ".someOtherClass");
```
Or with no config object, and a jQuery selection:
```javascript
mermaid.init(undefined, $("#someId .yetAnotherClass"));
```
```warning
This type of integration is deprecated. Instead the preferred way of handling more complex integration is to use the mermaidAPI instead.
```
2019-07-12 20:40:54 +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 defintion as a string. The render function
2019-07-12 20:40:54 +02:00
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.
2019-07-12 20:40:54 +02:00
2019-12-12 13:47:36 +01:00
The example below show an outline of how this could be used. The example just logs the resulting svg to the javascript console.
2019-07-12 20:40:54 +02:00
```html
2019-12-12 13:47:36 +01:00
<script src="mermaid.js"></script>
2019-07-12 20:40:54 +02:00
<script>
2019-12-13 04:25:07 +01:00
mermaid.mermaidAPI.initialize({
2019-07-12 20:40:54 +02:00
startOnLoad:false
});
$(function(){
// Example of using the API
var element = document.querySelector("#graphDiv");
var insertSvg = function(svgCode, bindFunctions){
element.innerHTML = svgCode;
};
var graphDefinition = 'graph TB\na-->b';
2019-12-13 04:25:07 +01:00
var graph = mermaid.mermaidAPI.render('graphDiv', graphDefinition, insertSvg);
2019-07-12 20:40:54 +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
var insertSvg = function(svgCode, bindFunctions) {
element.innerHTML = svgCode;
if(typeof callback !== 'undefined'){
callback(id);
}
bindFunctions(element);
};
var id = 'theGraph';
mermaidAPI.render(id,txt,insertSvg, element);
```
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.
2019-07-12 20:40:54 +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) {
if(code.match(/^sequenceDiagram/)||code.match(/^graph/)){
return '<div class="mermaid">'+code+'</div>';
}
else{
return '<pre><code>'+code+'</code></pre>';
}
};
```
Another example in coffeescript that also includes the mermaid script tag in the generated markup.
2019-07-12 20:40:54 +02:00
```js
2019-07-12 20:40:54 +02:00
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>'
html + '<div class="mermaid">'+code+'</div>'
else
@defaultCode(code, language)
renderer
```
## Advanced usage
**Error handling**
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.
2019-07-12 20:40:54 +02:00
**Parsing text without rendering**
It is also possible to validate the syntax before rendering in order to streamline the user experience. The function
**mermaid.parse(txt)** takes a text string as an argument and returns true if the text is syntactically correct and
false if it is not. The parseError function will be called when the parse function returns false.
The code-example below in meta code illustrates how this could work:
```javascript
mermaid.parseError = function(err,hash){
displayErrorInGui(err);
};
var textFieldUpdated = function(){
var textStr = getTextFromFormField('code');
if(mermaid.parse(textStr)){
reRender(textStr)
}
};
bindEventHandler('change', 'code', textFieldUpdated);
```
## 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.
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
The list above has two ways too many of doing this. Three are deprecated and will eventually be removed. The list of
2019-07-12 20:40:54 +02:00
configuration objects are described [in the mermaidAPI documentation](mermaidAPI.html).
## 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
2019-07-12 20:40:54 +02:00
on what kind of integration you use.
```html
<script src="../dist/mermaid.js"></script>
<script>
var config = {
startOnLoad:true,
flowchart:{
useMaxWidth:false,
htmlLabels:true
}
};
mermaid.initialize(config);
</script>
```
```tip
This is the preferred way of configuring mermaid.
```
2019-07-12 20:40:54 +02:00
## 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:
* mermaid.startOnLoad
* mermaid.htmlLabels
```js
2019-07-12 20:40:54 +02:00
mermaid.startOnLoad = true;
```
```warning
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.
```
2019-07-12 20:40:54 +02:00
## Using the mermaid_config
It is possible to set some configuration via the mermaid object. The two parameters that are supported using this
2019-07-12 20:40:54 +02:00
approach are:
* mermaid_config.startOnLoad
* mermaid_config.htmlLabels
```javascript
mermaid_config.startOnLoad = true;
```
```warning
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.
```
2019-07-12 20:40:54 +02:00
## Using the mermaid.init call
#
2019-07-12 20:40:54 +02:00
Is it possible to set some configuration via the mermaid object. The two parameters that are supported using this
approach are:
* mermaid_config.startOnLoad
* mermaid_config.htmlLabels
```
mermaid_config.startOnLoad = true;
```
```warning
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.
```