Quote:
Originally Posted by kovidgoyal
You could just put
a[href] { display: none }
into the extra css box.
|
Sorry for reviving an old thread but I tried this and unfortunately it strips the text inside the <a> element. After some searching I found this advice solved the problem:
https://stackoverflow.com/questions/...57625#27057625
and the command line enhancement to the conversion command is:
--extra-css 'a.disabled { pointer-events: none; cursor: default; } a[href] { class: disabled }'
Posting so that people can do it correctly.