Bootstrap: How to avoid printing link URLs

By default, Twitter Bootstrap's print styles include printing links.

/* Bootstrap's way of printing URLs */
@media print {
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

If you want to turn that off Show archive.org snapshot , you can do

/* Don't print link hrefs */
@media print {
  a[href]:after {
    content: none
  }
}