We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e2c39d commit abd2067Copy full SHA for abd2067
src/extras/itextsharp.xmlworker/iTextSharp/tool/xml/parser/state/SpecialCharState.cs
@@ -85,7 +85,7 @@ virtual public void Process(char character) {
85
this.parser.Memory().CurrentEntity().Length = 0;
86
} else if (character != '#' && (character < '0' || character > '9') && (character < 'a' || character > 'z')
87
&& (character < 'A' || character > 'Z') || entity.Length >= 7) {
88
- parser.Append('&').Append(entity.ToString());
+ parser.Append('&').Append(entity.ToString()).Append(character);
89
parser.SelectState().PreviousState();
90
91
} else {
0 commit comments