wrong URL -.-

This commit is contained in:
Nicole Dresselhaus
2025-05-09 21:51:23 +02:00
parent ce0c52a66a
commit ba3fd2d09e
27 changed files with 95 additions and 93 deletions

View File

@ -1214,7 +1214,7 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/nicole\.dresselhaus\.cloud");
var filterRegex = new RegExp("https:\/\/drezil\.de");
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}