HTML entity word escape typo because the quot is with e in english
This commit is contained in:
parent
f7fc31812e
commit
95ff5c1745
|
@ -279,7 +279,7 @@ public final class XMLConstants {
|
|||
return true;
|
||||
}
|
||||
if (codePoint == '\"') {
|
||||
result.append(""e;");
|
||||
result.append(""");
|
||||
return true;
|
||||
}
|
||||
if (codePoint == '\'') {
|
||||
|
@ -376,7 +376,7 @@ public final class XMLConstants {
|
|||
if ("<".equals(entity)) { return true; }
|
||||
if (">".equals(entity)) { return true; }
|
||||
if ("&".equals(entity)) { return true; }
|
||||
if (""e;".equals(entity)) { return true; }
|
||||
if (""".equals(entity)) { return true; }
|
||||
if ("'".equals(entity)) { return true; }
|
||||
|
||||
// HTML
|
||||
|
|
Loading…
Reference in a new issue