Hello A.,
Awaiting fully management, here are some workarounds.
As mentioned on:
To display those diagrams, we must add outer Master State, as:
@startuml
State MasterState {
state Sub {
state ep1 <<entryPoint>>
ep1 --> s1
}
[*] --> ep1
--
[*] --> SomewhatBroken
}
@enduml
And:
@startuml
State MasterState {
[*] --> SomewhatBroken
--
state SubState {
state Sub {
state ep1 <<entryPoint>>
ep1 --> s1
}
[*] --> ep1
}
}
@enduml
If that can help,
Regards,
Th.