From 239c521ad9a40409facc1d31121827e88c29c778 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 11 Nov 2021 12:21:21 +0100 Subject: [PATCH] :paperclip: Minor change on gulpfile. --- frontend/gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 761df6aac..ddf283dc6 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -31,8 +31,7 @@ paths.dist = "./target/dist/"; const renderer = { link(href, title, text) { - const escapedText = l.escape(text); - return `${escapedText}`; + return `${text}`; } };