Hello PlantUML team,
During test on `handwritten` on `deployment diagram`:
- It seems that this parameter have not effect on `file` and `stack `?
And some time minimal effect on `note`?
Here are some example:
@startuml
scale 2
skinparam handwritten true
artifact Artifact #palegreen
frame KO #pink {
file File
stack Stack
note right: ko
}
@enduml
And for `note` shape compare:
Code | Output |
@startuml
scale 2
skinparam handwritten true
component a {
}
note left of a
handwritten seems OK
on note
end note
@enduml | |
@startuml
scale 2
skinparam handwritten true
component a
note left of a
handwritten seems KO
on note
end note
@enduml | |
Regards.