Creol syntax bug with bold and list items

0 votes
asked Feb 18, 2014 in Bug by anonymous
I have a note like the folowing:

note left

my list is:

* first item

* second **item**

# number 1

# number **two**

end note

 

And the produced result is ignoring the list marker if i have bold notation. The same occurs with numbered items

1 Answer

0 votes
answered Feb 28, 2014 by plantuml (295,000 points)

Hello,

Thanks for the report.
It has been fixed in the following beta:

https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Regards,
 

 @startuml
 start
 :foo1;
 note left
 my list is:
 * first item
 * second **item**
 ** foo1
 # number 1
 # number **two**
 Foo1
 **Just** some bold information
 end note
 @enduml

 

...