CSS: Pseudo Links For Printing
/* CSS Pseudo Links For Printing */
p a:after {content: " (http://www.url.com/" attr(href) ")";} /* internal links will start with main site url */
p a[href^="http://"]:after, a[href^="https://"]:after {content: " (" attr(href) ")";} /* show external links */
p a[href^="javascript:"]:after, p a[href^=""]:after {content: "";} /* hide JavaScript and empty links */
p a[href^="#"]:after {display: none;} /* hide internal links */
p a {word-wrap: break-word;} /* break long links */