Print URL After Links

PHOTO EMBED

Wed Apr 29 2020 10:55:39 GMT+0000 (Coordinated Universal Time)

Saved by @Angeltwins #css

                                @media print {
  a::after{
    content: " (" attr(href) ") ";
  }
}
                                
content_copyCOPY

The above code is used to print URL after Links.

https://css-tricks.com/snippets/css/print-url-after-links/