Highlight external link with CSS

Use the power of CSS to highlight external links.
a[href^="http:"]:after
{
  content: 'ext';
  font-size: 70%;
  vertical-align: top;
}
Only the selector part really matters. It checks the href part of every a for the contents "http:". Do whatever you like afterwards.