Rebol Programming/parse-xml
USAGE:
PARSE-XML code
DESCRIPTION:
Parses XML code and returns a tree of blocks.
PARSE-XML is a function value.
ARGUMENTS:
- code -- XML code to parse (Type: string)
SOURCE CODE
parse-xml: func [
"Parses XML code and returns a tree of blocks."
code [string!] "XML code to parse"
][
xml-language/parse-xml code
]