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