mermaid/docs/upgrading.md

28 lines
493 B
Markdown
Raw Normal View History

# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT. Please edit the corresponding file in packages/mermaid/src/docs.
2022-09-03 09:35:47 +02:00
2022-09-03 05:43:37 +02:00
# Upgrading
Some of the interfaces has been upgraded.
## From version 0.4.0 to 0.5.0
### Initialization
`mermaid_config` is no longer used. Instead a call to mermaid initialize is done as in the example below:
#### version 0.4.0
```javascript
mermaid_config = {
2022-09-03 10:00:16 +02:00
startOnLoad: true,
2022-09-03 09:35:47 +02:00
};
2022-09-03 05:43:37 +02:00
```
#### version 0.5.0
```javascript
mermaid.initialize({
2022-09-03 10:00:16 +02:00
startOnLoad: true,
2022-09-03 09:35:47 +02:00
});
2022-09-03 05:43:37 +02:00
```