mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-17 22:41:14 +00:00
Merge pull request #703 from gradha/pr_fixes_htmlparser_whitespace
Makes htmlparser handle whitespace. Refs #694.
This commit is contained in:
@@ -528,7 +528,7 @@ proc parseHtml*(s: PStream, filename: string,
|
||||
## parses the XML from stream `s` and returns a ``PXmlNode``. Every
|
||||
## occured parsing error is added to the `errors` sequence.
|
||||
var x: TXmlParser
|
||||
open(x, s, filename, {reportComments})
|
||||
open(x, s, filename, {reportComments, reportWhitespace})
|
||||
next(x)
|
||||
# skip the DOCTYPE:
|
||||
if x.kind == xmlSpecial: next(x)
|
||||
|
||||
Reference in New Issue
Block a user