mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-16 06:49:31 +02:00
Merge pull request #3403 from dbartholomae/patch-1
Fix typo in documentation
This commit is contained in:
@@ -11,7 +11,7 @@ using the default integration provided by mermaid.js.
|
|||||||
The core of this api is the [**render**][2] function which, given a graph
|
The core of this api is the [**render**][2] function which, given a graph
|
||||||
definition as text, renders the graph/diagram and returns an svg element for the graph.
|
definition as text, renders the graph/diagram and returns an svg element for the graph.
|
||||||
|
|
||||||
It is is then up to the user of the API to make use of the svg, either insert it somewhere in the
|
It is then up to the user of the API to make use of the svg, either insert it somewhere in the
|
||||||
page or do something completely different.
|
page or do something completely different.
|
||||||
|
|
||||||
In addition to the render function, a number of behavioral configuration options are available.
|
In addition to the render function, a number of behavioral configuration options are available.
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
* The core of this api is the [**render**](Setup.md?id=render) function which, given a graph
|
* The core of this api is the [**render**](Setup.md?id=render) function which, given a graph
|
||||||
* definition as text, renders the graph/diagram and returns an svg element for the graph.
|
* definition as text, renders the graph/diagram and returns an svg element for the graph.
|
||||||
*
|
*
|
||||||
* It is is then up to the user of the API to make use of the svg, either insert it somewhere in the
|
* It is then up to the user of the API to make use of the svg, either insert it somewhere in the
|
||||||
* page or do something completely different.
|
* page or do something completely different.
|
||||||
*
|
*
|
||||||
* In addition to the render function, a number of behavioral configuration options are available.
|
* In addition to the render function, a number of behavioral configuration options are available.
|
||||||
@@ -171,7 +171,7 @@ const render = function (
|
|||||||
.append('g');
|
.append('g');
|
||||||
} else {
|
} else {
|
||||||
// No container was provided
|
// No container was provided
|
||||||
// If there is an existsing element with the id, we remove it
|
// If there is an existing element with the id, we remove it
|
||||||
// this likely a previously rendered diagram
|
// this likely a previously rendered diagram
|
||||||
const existingSvg = document.getElementById(id);
|
const existingSvg = document.getElementById(id);
|
||||||
if (existingSvg) {
|
if (existingSvg) {
|
||||||
|
Reference in New Issue
Block a user