-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix additional < followed by characters and EOF issues (#728)
This fixes these two cases: * "<some thing thing" where "thing" is repeated twice which kicks up a parser error because it thinks it's a duplicated attribute * "<some thing thing2 " where the space at the end causes a expected-end-of-tag-but-got-eof parser error to pop up In both of these cases, we want the data to be treated as character data--not a tag.
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters