libxml-descent-perl

Perl module for recursive descent xml parsing
  https://metacpan.org/release/XML-Descent
  0
  no reviews



The conventional models for parsing xml are either dom (a data structure representing the entire document tree is created) or sax (callbacks are issued for each element in the xml).

xml grammar is recursive - so it's nice to be able to write recursive parsers for it. xml::descent allows such parsers to be created.