plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
9.66k stars 878 forks source link

stdlib <osa2/hardware/all.puml> has a syntax error #1744

Closed jcralbino closed 3 weeks ago

jcralbino commented 3 weeks ago

Describe the bug Unable to include osa2/hardware/all.puml from stdlib

To Reproduce Use this plantuml code:

@startuml
!include <osa2/Hardware/all.puml>
listsprites
@enduml
  1. Go to plantuml Online Server
  2. Execute the plantuml code above:
  3. See error

Expected behavior all icons should appear from that lib

Screenshots image

The-Lum commented 3 weeks ago

Hi @jcralbino, and all,

To continue with:

In fact in order to use osa2/Hardware/all.puml, you must to include osa2/Common.puml, as:

@startuml 
!include <osa2/Common.puml>
!include <osa2/Hardware/all.puml>
listsprites
@enduml

Enjoy, Regards, Th.