plantuml / plantuml

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

nwdiag: Unable to use <material/DNS> sprite #1754

Closed jcralbino closed 1 week ago

jcralbino commented 2 weeks ago

Describe the bug When doing this code we don't see the object being show

@startuml
!include <material/dns>

nwdiag {
node  [ description= "<$dns>"]
}
@enduml

image

When using other sprites this works:

@startuml
!include <aws/Compute/AmazonVPC/router/router>

nwdiag {
node  [ description= "<$router>"]
}
@enduml

image

To Reproduce Steps to reproduce the behavior:

  1. Go to plant online server
  2. Use code above

Expected behavior The node will have a different image. The sprite is shown when using this:

@startuml
!include <material/dns>
listsprites
@enduml

generates this: image

Desktop (please complete the following information): PlantUML-server

Additional context Container for PlantUML-server version 1.2024.4 is used

The-Lum commented 1 week ago

Hello @jcralbino, and all,

As the sprite name is ma_dns, then use:

@startuml
!include <material/dns>

nwdiag {
node  [ description= "<$ma_dns>"]
}
@enduml

To see the expected result:

Enjoy, Regards, Th.