admin管理员组

文章数量:1391960

Is it possible to use labels with spaces within in entities of nwdiag of PlantUML.

All examples I've seen so far use only single-word named entities, like this:

@startuml

nwdiag {
   network internal_network {
      node_01 [ address = "1.2.3.4" ];
   }
}

@enduml

Is it possible to replace underscores with spaces in the diagram above anyhow?

Is it possible to use labels with spaces within in entities of nwdiag of PlantUML.

All examples I've seen so far use only single-word named entities, like this:

@startuml

nwdiag {
   network internal_network {
      node_01 [ address = "1.2.3.4" ];
   }
}

@enduml

Is it possible to replace underscores with spaces in the diagram above anyhow?

Share Improve this question asked Mar 13 at 7:09 user3159253user3159253 17.5k3 gold badges34 silver badges59 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Yes, it's possible with description

@startuml

nwdiag {
   network internal_network {
      description = "Internal Network"
      node_01 [ address = "1.2.3.4" ];
   }
}

@enduml

本文标签: Is it possible to use labels with spaces within in nwdiag of PlantUMLStack Overflow