Makes htmlparser handle whitespace. Refs #694.

Without the flag, htmlparser will ignore some significant whitespace in
HTML files. A more correct fix would be to not reuse the xml parser
since the rules for HTML are slightly different, but this will do for
the moment.
This commit is contained in:
Grzegorz Adam Hankiewicz
2013-12-02 20:50:56 +01:00
parent 5dcfa97fb9
commit dc9e17503e

View File

@@ -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)