Simple one today.
You can have CSS automatically add an external link signifier to any external URL
<a href="https://external_url">External URL</a>
with the following CSS
a[href^="http://"], a[href^="https://"] {
background: url("<PATH TO IMAGE>") center right no-repeat;
padding-right: 1em;
}