You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we're using just an UUID for the id in the frontmatter of a
link mermaid diagram, e.g.:
```mermaid
---
id: 00000000-0000-0000-0000-000000000000
---
info
```
Instead, we can use a URL for an ID, e.g.:
```mermaid
---
id: https://test.mermaidchart.invalid/d/00000000-0000-0000-0000-000000000000
---
info
```
This has the benefits of:
1. The MermaidChart server is part of the URL, which improves cases
where users are using different instances of the MermaidChart app.
2. Users can click on the URL to instantly see their diagram on the
Mermaid Chart app.
BREAKING-CHANGE: Frontmatter `id`s are now URLs instead of just UUIDs.
0 commit comments