HTML tags are visible for inline notes

0 votes
asked Feb 21, 2014 in Bug by anonymous
In this example I can still see <pre> tags although style is correct (monospace).
 
@startuml
:Main Admin: as Admin
(Use the application ) as (Use)
User -> (Start)
User --> (Use)
Admin ---> (Use)
note right of Admin : This is an example .
note right of (Use)
A note can also
be on several lines
end note
note "<pre>This note is connected \nto several objects.</pre>" as N2
(Start) .. N2
N2 .. (Use)
@enduml
 
Is there any alternative way to accomplish this without tags shown ?  I need to connect note to many objects.

1 Answer

0 votes
answered Feb 25, 2018 by Anthony-Gaudino (5,720 points)

PlantUML doesn't really accepts HTML tags, but similar tags and <pre> is not a valid tag.

Please see http://plantuml.com/creole for available tags.

...