entities: Allow control chars when serializing HTML

This commit is contained in:
Nick Wellnhofer 2024-10-25 18:02:58 +02:00
parent b52a3044aa
commit 89b9f45711

View File

@ -685,7 +685,7 @@ xmlEscapeText(const xmlChar *text, int flags) {
replSize = xmlSerializeHexCharRef(buf, val);
repl = BAD_CAST buf;
} else if ((flags & XML_ESCAPE_ALLOW_INVALID) ||
} else if ((flags & (XML_ESCAPE_ALLOW_INVALID | XML_ESCAPE_HTML)) ||
(c >= 0x20) ||
(c == '\n') || (c == '\t') || (c == '\r')) {
/* default case, just copy */