Auto-Linkify Words

I’ve tried to fix this with JavaScript (code below), but it only works occasionally. I believe Ember.js might be conflicting with it. So it’s not ideal

<script>
	window.addEventListener("load", function() {
		document.querySelectorAll("a.linkify-word.no-track-link").forEach(function(link) {
			link.removeAttribute("target");
		});
	});
</script>