Hello,
I'm learning Sequence Diagram from Reference Guide, according to 1.19 "Creole and HTML", I got some parts not working in my practice.
See my code below:
@startuml
title Creole and HTML Format in UML
actor Alice
participant "The **Famous** Bob" as Bob
Alice -> Bob: hello --there--
... Some ~~long delay~~ ...
Alice <-- Bob : OK
note left
This is **bold**
This is //italics//
This is ""monospaced""
This is --stroked--
This is __underlined__
This is ~~waved~~
----
This is {{globe_logo.png|globe}}, not supported(1)
end note
hnote left of Alice #red
(1) in above Creole, using {{imagefile|title}}
is not working
end note
Alice -> Bob : A //well formatted// message
note right of Alice
This is <back:cadetblue><size:18>**displayed**</size></back>
__left of__ Alice
end note
note left of Bob
<u><color:red>This(?)</color></u> is <color #118888>displayed</color> (2)
**<color purple>left of</color> <s:red>Alice(?)</s> Bob** (3)
end note
hnote left of Bob #red
(2) in above cannot using <u:red> to set underline color
and, the underline color is followed the font color
(3) <s:red> is not working
end note
note over Alice, Bob
<w:red>This is hosted(?)</w> by <img globe_logo.png> (4)
end note
hnote left of Bob #red
(4) the <w:#FF33FF> is not working
end note\
@enduml
The diagram image is like this:
https://github.com/yasenstar/PlantUML_in_Action/blob/main/01_sequence_diagram/01.11-01.20/01.19.png
Any hints on why they're not working?
Thanks, Xiaoqi