Hi,
I'm trying to reproduce in plantuml an activity diagram example that has got a fork which lead to another state and to a token (object with state).
Since I cannot find such object I decided to implement it as a rectangle with needed text, anyway png generation gives me syntax errors .
@startuml
|Customer|
start
:Order product;
fork
:Pay;
fork again
rectangle rectangle [
<u>:Order</u>
~[placed]
]
end fork;
with the code above I get "Syntax error : did you mean "- rectangle rectangle [" ?
Is there a way to get what I need ?
Thanks in advance