Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Convert links to Discord opens
$(document).ready(function() {
	$("a.external").each(function(i) {
		if (new URL($(this).prop("href")).host == "discord.com") {
			$(this).on("click", function(e) {
				e.preventDefault();
				$(this).off("click");
				let url = new URL($(this).prop("href"));
				window.open("discord:" + url.pathname);
				location.href = $(this).prop("href");
			});
		}
	});
});