• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/XML/H29-May-2014-753379

t/H29-May-2014-247190

xt/author/H29-May-2014-3823

Build.PLH A D29-May-20141.7 KiB5955

ChangesH A D29-May-20142.3 KiB8255

MANIFESTH A D29-May-2014270 1716

META.jsonH A D29-May-20141.5 KiB6463

META.ymlH A D29-May-2014891 4140

Makefile.PLH A D29-May-2014650 2321

READMEH A D29-May-20141.5 KiB5433

README

1XML::TreeBuilder
2----------------
3
4This module uses XML::Parser to make XML document trees constructed of
5XML::Element objects (and XML::Element is a subclass of HTML::Element
6adapted for XML).  XML::TreeBuilder is meant particularly for people
7who are used to the HTML::TreeBuilder / HTML::Element interface to
8document trees, and who don't want to learn some other document
9interface like XML::Twig or XML::DOM.
10
11
12PREREQUISITES
13
14In order to install and use this package you will need Perl version
155.004 or better.  You will also need to have the XML-Parser and
16HTML-Tree distributions installed.  All of these should be available
17from CPAN.
18
19
20
21INSTALLATION
22
23Just follow the usual procedure:
24
25   perl Build.PL
26   ./Build
27   ./Build test
28   ./Build install
29
30If you want to install a private copy of this module-suite in your home
31directory, then you should try to produce the initial Makefile with
32something like this command:
33
34  perl Build.PL PREFIX=~/perl
35
36See perldoc perlmodinstall for more information on installing modules.
37
38
39SUPPORT
40
41Questions, bug reports, useful code bits, and suggestions for this
42module should just be sent to JFEARN@cpan.org or open a ticket in
43the CPAN RT https://rt.cpan.org//Dist/Display.html?Queue=XML-TreeBuilder
44
45
46AVAILABILITY
47
48The latest version of this module is available from the Comprehensive
49Perl Archive Network (CPAN).  Visit <http://www.perl.com/CPAN/> to
50find a CPAN site near you.
51
52The source is available on github <https://github.com/jfearn/XML-TreeBuilder>
53
54