_html: Don't escape special characters

This commit is contained in:
Stig-Ørjan Smelror 2024-02-01 11:38:14 +01:00
parent 3dafd10f0f
commit 66ca7ee995

1
qsgen2
View File

@ -842,7 +842,6 @@ function _html() {
); );
} }
while (my ($key, $value) = each %qstags) { while (my ($key, $value) = each %qstags) {
$key = quotemeta($key); # Escape special characters in QStags
s/(?<!\S)\Q$key\E\b/$value/g; s/(?<!\S)\Q$key\E\b/$value/g;
} }
'); ');