How to escape ] in Activity(BETA)

0 votes
asked Jun 6, 2016 in To be sorted by anonymous
I want to declare array at SDL.

I wrote as follows, but did not see any figure.

:foo[1024]]

How can I escape ']' at SDL?

1 Answer

0 votes
answered Jun 7, 2016 by plantuml (294,960 points)

We have to fix this one...

However, a possible workaround is to use unicode notation (and to put a final space):

@startuml
start
:foo<U+005B>1024<U+005D> ]
@enduml

Hope this helps!

commented Jun 7, 2016 by plantuml (294,960 points)
Actually even
@startuml
start
:foo[1024] ]
@enduml
is working

http://plantuml.com/plantuml/uml/Aov9B2hXiahBpuysD30oYLM81G00
commented Jun 8, 2016 by anonymous
Thanks for your help.
It worked as intended in my environment.
...