Update docs

Fixed link to mermaid-js.github.io after review

Update docs

Fixed link again
This commit is contained in:
nirname
2023-08-23 20:38:06 +00:00
committed by Nikolay Rozhkov
parent 108c25f19f
commit fc19bf93aa
8 changed files with 22 additions and 23 deletions

30
docs/config/advanced.md Normal file
View File

@@ -0,0 +1,30 @@
> **Warning**
>
> ## THIS IS AN AUTOGENERATED FILE. DO NOT EDIT.
>
> ## Please edit the corresponding file in [/packages/mermaid/src/docs/config/advanced.md](../../packages/mermaid/src/docs/config/advanced.md).
# Advanced mermaid (Coming soon..)
## splitting mermaid code from html
A more condensed html code can be achieved by embedding the mermaid code in its own .js file, which is referenced like so:
```html
...
</div>
</body>
</html>
```
The actual mermaid file could for example look like this:
```javascript
mermaid content ...
```
## mermaid configuration options
```markdown
(coming soon)
```