Hi,
Is it possible to set the default background color of the text of "address", in order to avoid the overlapping of text and lines? I tried to set a style using :
<style>
nwdiagDiagram {
arrow {
' FontXXX only for address
BackGroundColor #plum
}
}
</style>
But it does not seem to work. The alternative would be using HTML tags for every address:
nwdiag {
network internal {
address = "<back:plum>172.x.x.x/24";
web01 [address = "<back:plum>172.x.x.1"];
}
}
but I wonder if there is another way I'm not aware of.
Thank you in advance!