Double quote in a event

0 votes
asked Jan 26, 2016 in Bug by Serge Wenger Work (15,620 points)
Hello,
I use plantuml.8034.jar
 
The text on an event cannot have ".
It work well in a state.
 
Could you help me?
 
@startuml
[*] --> Main_Libre
 
state "Libre" as Main_Libre {
  state Inside
  state Inside2
  Inside -> Inside2 : print (aaaaaa)
  'NOT OK Inside -> Inside2 : print ("aaaaaa")
  'NOT OK Inside -> Inside2 : print (\"aaaaaa\")
  'NOT OK Inside -> Inside2 : print (~"aaaaaa~")
 
Main_Libre : Entry : print ("aaaaaaa") 
Main_Libre : Entry : print (""bbbbbb"") 
Inside : Exit : print ("titi")
 
@enduml
 

 

1 Answer

+1 vote
answered Jan 26, 2016 by plantuml (295,000 points)
selected Jan 26, 2016 by Serge Wenger Work
 
Best answer
Thanks for the report.

Quotes were not allowed here, for some (forgotten?) reason.

Here is a beta that fixes it: https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

This will be released in next official version.
commented Jan 26, 2016 by Serge Wenger Work (15,620 points)
Thanks. I check and it is OK.
...