This module parses an XML document and creates its XML tree representation.
XmlError = object of ValueError errors*: seq[string] ## all detected parsing errors
proc parseXml(s: Stream; filename: string; errors: var seq[string]): XmlNode {. raises: [Exception, ValueError], tags: [ReadIOEffect, RootEffect].}
PXmlNode
. Every occurred parsing error is added to the errors sequence. proc parseXml(s: Stream): XmlNode {.raises: [Exception, ValueError, XmlError], tags: [ReadIOEffect, RootEffect].}
PXmlNode
. All parsing errors are turned into an EInvalidXML
exception. proc loadXml(path: string; errors: var seq[string]): XmlNode {. raises: [IOError, Exception, ValueError], tags: [ReadIOEffect, RootEffect].}
path
, and returns a PXmlNode
. Every occurred parsing error is added to the errors sequence. proc loadXml(path: string): XmlNode {.raises: [IOError, Exception, ValueError, XmlError], tags: [ReadIOEffect, RootEffect].}
path
, and returns a PXmlNode
. All parsing errors are turned into an EInvalidXML
exception.
© 2006–2017 Andreas Rumpf
Licensed under the MIT License.
https://nim-lang.org/docs/xmlparser.html