node-html-pdf icon indicating copy to clipboard operation
node-html-pdf copied to clipboard

Anchor tags display the whole href url alongwith the inner text, anyway to hide the url?

Open raviverma89 opened this issue 6 years ago • 2 comments

Html file contains : <a href="www.google.com">Google!</a> Its displayed as: Google! (www.google.com)

I want just: Google!

raviverma89 avatar Nov 29 '17 14:11 raviverma89

Same here. Did you solve the problem?

SehoAhn avatar Jul 06 '18 05:07 SehoAhn

I have found a work around , just add this to your main css

  a[href]:after {
    content: none !important;
  }

it worked for me :)

Ola-Alkhateeb avatar Dec 20 '21 10:12 Ola-Alkhateeb