Hello PlantUML team,
- Could you allow MaximumWidth on style for note [only test on activity]?
That is quasi OK with skinparam but KO with style.
Here is an example:
skinparam | CSS style |
@startuml
skinparam wrapWidth 100
|Actor 1|
start
:foo1;
note right
Long Long Long Long Long Long Long Long Long Long Long Long Long Long note
This note is on several
//lines// and can
contain <b>HTML</b>
====
* Calling the method ""foo()"" is prohibited
end note
floating note left: This is a note
|Actor 2|
:foo2;
note right
Long Long Long Long Long Long Long Long Long Long Long Long Long Long note
This note is on several
//lines// and can
contain <b>HTML</b>
====
* Calling the method ""foo()"" is prohibited
end note
stop
@enduml | @startuml
<style>
activityDiagram {
note {
MaximumWidth 100
}
}
</style>
|Actor 1|
start
:foo1;
note right
Long Long Long Long Long Long Long Long Long Long Long Long Long Long note
This note is on several
//lines// and can
contain <b>HTML</b>
====
* Calling the method ""foo()"" is prohibited
end note
floating note left: This is a note
|Actor 2|
:foo2;
note right
Long Long Long Long Long Long Long Long Long Long Long Long Long Long note
This note is on several
//lines// and can
contain <b>HTML</b>
====
* Calling the method ""foo()"" is prohibited
end note
stop
@enduml |
 |  |
Thank for your work,
Regards,
Th.