html - How to remove anchor tag around rescaled images in readthedocs site? -
i use alias without width or height modifiers display image:
.. |downloads_png| image:: assets/index/downloads_v2.png
this image rendered correctly, without decoration.
i add height modifier resize image:
.. |downloads_png| image:: assets/index/downloads_v2.png :height: 26px
when this, readthedocs page shows image grey line underneath:
what happening anchor tag (for whatever reason) being wrapped around img
tag image, , anchor tag has text decoration style applied it, adds grey underlining.
how prevent happening? not need download image when mousing on it. want display image.
Comments
Post a Comment