alexwlchan / alexwlchan.net

Source code and plugins for my website, a static site built with Jekyll
https://alexwlchan.net/
MIT License
42 stars 12 forks source link

Add the URL after links when printing them #865

Open alexwlchan opened 2 months ago

alexwlchan commented 2 months ago

I've seen this done on the Flickr Foundation blog with the CSS:

@media print {
  a[href]:after {
    content: " (" attr(href) ")"
  }
}

I should add something similar to my print stylesheet, once I work out exactly which links it should apply to.