0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-09 14:21:42 -05:00

📎 Minor change on gulpfile.

This commit is contained in:
Andrey Antukh 2021-11-11 12:21:21 +01:00
parent 77b4f09cfb
commit 239c521ad9

View file

@ -31,8 +31,7 @@ paths.dist = "./target/dist/";
const renderer = {
link(href, title, text) {
const escapedText = l.escape(text);
return `<a href="${href}" target="_blank">${escapedText}</a>`;
return `<a href="${href}" target="_blank">${text}</a>`;
}
};