mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
ad4f267b7a
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
17 lines
703 B
Plaintext
17 lines
703 B
Plaintext
XML::DOM::Lite is designed to be a reasonably fast, highly portable,
|
|
XML parser kit written in pure perl, implementing the DOM standard
|
|
quite closely. To keep performance up and footprint down.
|
|
|
|
The standard pattern for using the XML::DOM::Lite parser kit is to use
|
|
XML::DOM::Lite qw(Parser :constants);
|
|
|
|
Available exports are : Parser, Node, NodeList, NodeIterator,
|
|
NodeFilter, XPath, Document, XSLT and the constants.
|
|
|
|
This is mostly for convenience, so that you can save your key-strokes
|
|
for the fun stuff. Alternatively, to avoid polluting your namespace,
|
|
you can simply : use XML::DOM::Lite::Parser; use
|
|
XML::DOM::Lite::Constants qw(:all); # ... etc
|
|
|
|
WWW: https://metacpan.org/release/XML-DOM-Lite
|