sphinxcontrib-hdl-diagrams icon indicating copy to clipboard operation
sphinxcontrib-hdl-diagrams copied to clipboard

Text in diagrams is cropped

Open oharboe opened this issue 3 years ago • 1 comments

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:

fiddlybob

oharboe avatar Mar 16 '22 17:03 oharboe

I take it this is actually a problem in netlistsvg: https://github.com/nturley/netlistsvg/issues/119

oharboe avatar Mar 16 '22 18:03 oharboe