diff --git a/js/everything.js b/js/everything.js
index d0d5568..0ec3ed0 100644
--- a/js/everything.js
+++ b/js/everything.js
@@ -441,7 +441,13 @@ function anchorURLs(text) {
* (2) it encounters a period (.) or whitespace, if the TLD was followed by a forwardslash (/) */
var re = /((?:http|https)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(?:\/\S*[^\.\s])?)/g; // eslint-disable-line no-useless-escape
/* Wraps all found URLs in tags */
- return text.replace(re, "$1");
+ // Use a function to replace matches
+ return text.replace(re, function(match) {
+ // Escape the match to prevent XSS
+ var url = encodeURIComponent(match);
+ // Wrap the URL in an anchor tag
+ return "" + match + "";
+ });
}
function anchorTimestamps(text, videoID) {