Module:template parser/data: Difference between revisions

No edit summary
Remove obsolete data.
Line 27: Line 27:
data.end_tags = data_end_tags
data.end_tags = data_end_tags
end
end
-- Character escapes from PHP's htmlspecialchars.
data.php_htmlspecialchars = {
["\""] = """,
["&"] = "&",
["'"] = "'",
["<"] = "&lt;",
[">"] = "&gt;",
}


-- The parser's HTML sanitizer validates tag attributes with the regex
-- The parser's HTML sanitizer validates tag attributes with the regex