-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
enhancementNew feature or requestNew feature or request
Description
It was brought to my attention recently that GitHub can render Mermaid diagrams inside markdown beautifully.
Mermaid's state diagrams are almost identical to the ones used by PlantUML, except it doesn't support nested state descriptions, which is what the logic blocks generator is currently making.
So instead of this:
state "State1" as state_one {
state_one : text
}
We need to flatten it out, like this:
state "State1" as state_one
state_one : text
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request