最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Is it possible to use labels with spaces within in nwdiag of PlantUML - Stack Overflow

programmeradmin1浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论