<script type="text/javascript">
// There has to be a better way to do this with markdown :P
document.querySelectorAll('a').forEach(link => {
if (link.attributes.href.textContent.substring(0,4) === '/img') {
link.setAttribute('target', '_blank');
}
});
</script>