How to apply "skinparam handwritten true" to other diagrams (json, network etc)

0 votes
asked Jan 22, 2021 in Question / help by Ivan
Is there a way to apply "skinparam handwritten true" to network or JSON diagram ?
commented Jun 29, 2021 by The-Lu (64,760 points)

Hello I.,

For network, it is now done, as:

@startuml
skinparam handwritten true

nwdiag {
  network dmz {
      address = "210.x.x.x/24"

      web01 [address = "210.x.x.1"];
      web02 [address = "210.x.x.2"];
  }
  network internal {
      address = "172.x.x.x/24";

      web01 [address = "172.x.x.1"];
      web02 [address = "172.x.x.2"];
      db01;
      db02;
  }
}
@enduml

Awaiting for JSON, YAML, ...

If that can help,
Regards,
Th.

1 Answer

0 votes
answered Dec 14, 2023 by The-Lu (64,760 points)

Hello I., and all,

It is now done, see doc. here:

Enjoy,

Thanks to the PlantUML teams,
Regards,
Th.

...