Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/perl-html-myhtml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlex <lexinhell@gmail.com>2016-02-29 16:23:19 +0300
committerlex <lexinhell@gmail.com>2016-02-29 16:23:19 +0300
commit9b11b5c463b9035e46037d9d6acb1095e0d001cf (patch)
treecf1c869a739f3dd19bc7072a1a25e4e1db5e4d19 /MyHTML.pm
parent62a42a38a6c3b8e6d58dfee4c602118ba64290e6 (diff)
Fixed compile problem
Diffstat (limited to 'MyHTML.pm')
-rwxr-xr-xMyHTML.pm10
1 files changed, 6 insertions, 4 deletions
diff --git a/MyHTML.pm b/MyHTML.pm
index e1b803e..0448011 100755
--- a/MyHTML.pm
+++ b/MyHTML.pm
@@ -22,7 +22,7 @@ use strict;
use vars qw($AUTOLOAD $VERSION $ABSTRACT @ISA @EXPORT);
BEGIN {
- $VERSION = 0.23;
+ $VERSION = 0.24;
$ABSTRACT = "Fast HTML Parser using Threads with no outside dependencies";
@ISA = qw(Exporter DynaLoader);
@@ -140,6 +140,8 @@ This Parser based on L<MyHTML library|https://github.com/lexborisov/myhtml> (it
=item * Passes all tree construction tests from L<html5lib-tests|https://github.com/html5lib/html5lib-tests>
+See latest version on L<https://github.com/lexborisov/perl-html-myhtml|https://github.com/lexborisov/perl-html-myhtml>
+
=back
=head1 SYNOPSIS
@@ -160,7 +162,7 @@ This Parser based on L<MyHTML library|https://github.com/lexborisov/myhtml> (it
# print result
print "Print HTML Tree:\n";
- $tree->document->print_childs($tree, *STDOUT, 0);
+ $tree->document->print_children($tree, *STDOUT, 0);
print "\nGet all DIV elements of HTML Tree:\n";
my $list = $tree->get_elements_by_tag_name("div");
@@ -674,11 +676,11 @@ Print a node
$node->print($tree, $fh, $inc);
-=head3 print_childs
+=head3 print_children
Print tree of a node. Print excluding current node
- $node->print_childs($tree, $fh, $inc);
+ $node->print_children($tree, $fh, $inc);
=head3 print_all