sphinxcontrib-hdl-diagrams
sphinxcontrib-hdl-diagrams copied to clipboard
Text in diagrams is cropped
Diagram
-------
.. hdl-diagram:: fiddlybob.v
:type: netlistsvg
:module: fiddlybob
fiddlybob.v:
module fiddlybob(
input thistextiscropped,
input moretextthatiscropped,
input moretextthatiscroppedNot,
output evenmoretextthatiscropped,
output [63:0] ididnotexpectthistexttobecropped,
);
wire _evenmoretextthatiscropped_T_2 = ididnotexpectthistexttobecropped[0] != moretextthatiscroppedNot;
assign evenmoretextthatiscropped = thistextiscropped & (~moretextthatiscropped | _evenmoretextthatiscropped_T_2);
endmodule
Result, cropped text:
I take it this is actually a problem in netlistsvg: https://github.com/nturley/netlistsvg/issues/119