more descriptive main description
[catagits/DOM-Tiny.git] / lib / DOM / Tiny.pm
CommitLineData
a292be34 1package DOM::Tiny;
2
3use strict;
4use warnings;
5
d6512b50 6use overload
7 '@{}' => sub { shift->child_nodes },
8 '%{}' => sub { shift->attr },
9 bool => sub {1},
10 '""' => sub { shift->to_string },
11 fallback => 1;
12
13use Carp 'croak';
14use DOM::Tiny::Collection;
15use DOM::Tiny::CSS;
16use DOM::Tiny::HTML;
17use Scalar::Util qw(blessed weaken);
18
a292be34 19our $VERSION = '0.001';
20
3793c28f 21sub new {
22 my $class = shift;
23 my $self = bless \DOM::Tiny::HTML->new, ref $class || $class;
24 return @_ ? $self->parse(@_) : $self;
25}
26
d6512b50 27sub all_text { shift->_all_text(1, @_) }
28
29sub ancestors { _select($_[0]->_collect($_[0]->_ancestors), $_[1]) }
30
31sub append { shift->_add(1, @_) }
32sub append_content { shift->_content(1, 0, @_) }
33
34sub at {
35 my $self = shift;
36 return undef unless my $result = $self->_css->select_one(@_);
37 return $self->_build($result, $self->xml);
38}
39
40sub attr {
41 my $self = shift;
42
43 # Hash
44 my $tree = $self->tree;
45 my $attrs = $tree->[0] ne 'tag' ? {} : $tree->[2];
46 return $attrs unless @_;
47
48 # Get
49 return $attrs->{$_[0]} unless @_ > 1 || ref $_[0];
50
51 # Set
52 my $values = ref $_[0] ? $_[0] : {@_};
53 @$attrs{keys %$values} = values %$values;
54
55 return $self;
56}
57
58sub child_nodes { $_[0]->_collect(_nodes($_[0]->tree)) }
59
60sub children { _select($_[0]->_collect(_nodes($_[0]->tree, 1)), $_[1]) }
61
62sub content {
63 my $self = shift;
64
65 my $type = $self->type;
66 if ($type eq 'root' || $type eq 'tag') {
67 return $self->_content(0, 1, @_) if @_;
68 my $html = DOM::Tiny::HTML->new(xml => $self->xml);
69 return join '', map { $html->tree($_)->render } _nodes($self->tree);
70 }
71
72 return $self->tree->[1] unless @_;
73 $self->tree->[1] = shift;
74 return $self;
75}
76
77sub descendant_nodes { $_[0]->_collect(_all(_nodes($_[0]->tree))) }
78
79sub find { $_[0]->_collect(@{$_[0]->_css->select($_[1])}) }
80
81sub following { _select($_[0]->_collect(@{$_[0]->_siblings(1)->[1]}), $_[1]) }
82sub following_nodes { $_[0]->_collect(@{$_[0]->_siblings->[1]}) }
83
84sub matches { shift->_css->matches(@_) }
85
86sub namespace {
87 my $self = shift;
88
89 return undef if (my $tree = $self->tree)->[0] ne 'tag';
90
91 # Extract namespace prefix and search parents
92 my $ns = $tree->[1] =~ /^(.*?):/ ? "xmlns:$1" : undef;
93 for my $node ($tree, $self->_ancestors) {
94
95 # Namespace for prefix
96 my $attrs = $node->[2];
97 if ($ns) { $_ eq $ns and return $attrs->{$_} for keys %$attrs }
98
99 # Namespace attribute
100 elsif (defined $attrs->{xmlns}) { return $attrs->{xmlns} }
101 }
102
103 return undef;
104}
105
d6512b50 106sub next { $_[0]->_maybe($_[0]->_siblings(1, 0)->[1]) }
107sub next_node { $_[0]->_maybe($_[0]->_siblings(0, 0)->[1]) }
108
109sub parent {
110 my $self = shift;
111 return undef if $self->tree->[0] eq 'root';
112 return $self->_build($self->_parent, $self->xml);
113}
114
115sub parse { shift->_delegate(parse => @_) }
116
117sub preceding { _select($_[0]->_collect(@{$_[0]->_siblings(1)->[0]}), $_[1]) }
118sub preceding_nodes { $_[0]->_collect(@{$_[0]->_siblings->[0]}) }
119
120sub prepend { shift->_add(0, @_) }
121sub prepend_content { shift->_content(0, 0, @_) }
122
123sub previous { $_[0]->_maybe($_[0]->_siblings(1, -1)->[0]) }
124sub previous_node { $_[0]->_maybe($_[0]->_siblings(0, -1)->[0]) }
125
126sub remove { shift->replace('') }
127
128sub replace {
129 my ($self, $new) = @_;
130 return $self->parse($new) if (my $tree = $self->tree)->[0] eq 'root';
131 return $self->_replace($self->_parent, $tree, _nodes($self->_parse($new)));
132}
133
134sub root {
135 my $self = shift;
136 return $self unless my $tree = $self->_ancestors(1);
137 return $self->_build($tree, $self->xml);
138}
139
140sub strip {
141 my $self = shift;
142 return $self if (my $tree = $self->tree)->[0] ne 'tag';
143 return $self->_replace($tree->[3], $tree, _nodes($tree));
144}
145
146sub tag {
147 my ($self, $tag) = @_;
148 return undef if (my $tree = $self->tree)->[0] ne 'tag';
149 return $tree->[1] unless $tag;
150 $tree->[1] = $tag;
151 return $self;
152}
153
154sub tap { shift->DOM::Tiny::Collection::tap(@_) }
155
156sub text { shift->_all_text(0, @_) }
157
158sub to_string { shift->_delegate('render') }
159
160sub tree { shift->_delegate(tree => @_) }
161
162sub type { shift->tree->[0] }
163
164sub val {
165 my $self = shift;
166
167 # "option"
91880340 168 return $self->{value} // $self->text if (my $tag = $self->tag) eq 'option';
d6512b50 169
170 # "textarea", "input" or "button"
171 return $tag eq 'textarea' ? $self->text : $self->{value} if $tag ne 'select';
172
173 # "select"
174 my $v = $self->find('option:checked')->map('val');
175 return exists $self->{multiple} ? $v->size ? $v->to_array : undef : $v->last;
176}
177
178sub wrap { shift->_wrap(0, @_) }
179sub wrap_content { shift->_wrap(1, @_) }
180
181sub xml { shift->_delegate(xml => @_) }
182
183sub _add {
184 my ($self, $offset, $new) = @_;
185
186 return $self if (my $tree = $self->tree)->[0] eq 'root';
187
188 my $parent = $self->_parent;
189 splice @$parent, _offset($parent, $tree) + $offset, 0,
190 _link($parent, _nodes($self->_parse($new)));
191
192 return $self;
193}
194
195sub _all {
196 map { $_->[0] eq 'tag' ? ($_, _all(_nodes($_))) : ($_) } @_;
197}
198
199sub _all_text {
200 my ($self, $recurse, $trim) = @_;
201
202 # Detect "pre" tag
203 my $tree = $self->tree;
204 $trim = 1 unless defined $trim;
205 map { $_->[1] eq 'pre' and $trim = 0 } $self->_ancestors, $tree
206 if $trim && $tree->[0] ne 'root';
207
208 return _text([_nodes($tree)], $recurse, $trim);
209}
210
211sub _ancestors {
212 my ($self, $root) = @_;
213
214 return unless my $tree = $self->_parent;
215 my @ancestors;
216 do { push @ancestors, $tree }
217 while ($tree->[0] eq 'tag') && ($tree = $tree->[3]);
218 return $root ? $ancestors[-1] : @ancestors[0 .. $#ancestors - 1];
219}
220
221sub _build { shift->new->tree(shift)->xml(shift) }
222
223sub _collect {
224 my $self = shift;
225 my $xml = $self->xml;
226 return DOM::Tiny::Collection->new(map { $self->_build($_, $xml) } @_);
227}
228
229sub _content {
230 my ($self, $start, $offset, $new) = @_;
231
232 my $tree = $self->tree;
233 unless ($tree->[0] eq 'root' || $tree->[0] eq 'tag') {
234 my $old = $self->content;
235 return $self->content($start ? "$old$new" : "$new$old");
236 }
237
238 $start = $start ? ($#$tree + 1) : _start($tree);
239 $offset = $offset ? $#$tree : 0;
240 splice @$tree, $start, $offset, _link($tree, _nodes($self->_parse($new)));
241
242 return $self;
243}
244
245sub _css { DOM::Tiny::CSS->new(tree => shift->tree) }
246
247sub _delegate {
248 my ($self, $method) = (shift, shift);
249 return $$self->$method unless @_;
250 $$self->$method(@_);
251 return $self;
252}
253
254sub _link {
255 my ($parent, @children) = @_;
256
257 # Link parent to children
258 for my $node (@children) {
259 my $offset = $node->[0] eq 'tag' ? 3 : 2;
260 $node->[$offset] = $parent;
261 weaken $node->[$offset];
262 }
263
264 return @children;
265}
266
267sub _maybe { $_[1] ? $_[0]->_build($_[1], $_[0]->xml) : undef }
268
269sub _nodes {
270 return unless my $tree = shift;
271 my @nodes = @$tree[_start($tree) .. $#$tree];
272 return shift() ? grep { $_->[0] eq 'tag' } @nodes : @nodes;
273}
274
275sub _offset {
276 my ($parent, $child) = @_;
277 my $i = _start($parent);
278 $_ eq $child ? last : $i++ for @$parent[$i .. $#$parent];
279 return $i;
280}
281
282sub _parent { $_[0]->tree->[$_[0]->type eq 'tag' ? 3 : 2] }
283
284sub _parse { DOM::Tiny::HTML->new(xml => shift->xml)->parse(shift)->tree }
285
286sub _replace {
927f1351 287 my ($self, $parent, $child, @nodes) = @_;
288 splice @$parent, _offset($parent, $child), 1, _link($parent, @nodes);
d6512b50 289 return $self->parent;
290}
291
292sub _select {
293 my ($collection, $selector) = @_;
294 return $collection unless $selector;
295 return $collection->new(grep { $_->matches($selector) } @$collection);
296}
297
298sub _siblings {
299 my ($self, $tags, $i) = @_;
300
301 return [] unless my $parent = $self->parent;
302
303 my $tree = $self->tree;
304 my (@before, @after, $match);
305 for my $node (_nodes($parent->tree)) {
306 ++$match and next if !$match && $node eq $tree;
307 next if $tags && $node->[0] ne 'tag';
308 $match ? push @after, $node : push @before, $node;
309 }
310
311 return defined $i ? [$before[$i], $after[$i]] : [\@before, \@after];
312}
313
314sub _squish {
315 my $str = shift;
316 $str =~ s/^\s+//;
317 $str =~ s/\s+$//;
318 $str =~ s/\s+/ /g;
319 return $str;
320}
321
322sub _start { $_[0][0] eq 'root' ? 1 : 4 }
323
324sub _text {
325 my ($nodes, $recurse, $trim) = @_;
326
327 # Merge successive text nodes
328 my $i = 0;
329 while (my $next = $nodes->[$i + 1]) {
330 ++$i and next unless $nodes->[$i][0] eq 'text' && $next->[0] eq 'text';
331 splice @$nodes, $i, 2, ['text', $nodes->[$i][1] . $next->[1]];
332 }
333
334 my $text = '';
335 for my $node (@$nodes) {
336 my $type = $node->[0];
337
338 # Text
339 my $chunk = '';
340 if ($type eq 'text') { $chunk = $trim ? _squish $node->[1] : $node->[1] }
341
342 # CDATA or raw text
343 elsif ($type eq 'cdata' || $type eq 'raw') { $chunk = $node->[1] }
344
345 # Nested tag
346 elsif ($type eq 'tag' && $recurse) {
347 no warnings 'recursion';
348 $chunk = _text([_nodes($node)], 1, $node->[1] eq 'pre' ? 0 : $trim);
349 }
350
351 # Add leading whitespace if punctuation allows it
352 $chunk = " $chunk" if $text =~ /\S\z/ && $chunk =~ /^[^.!?,;:\s]+/;
353
354 # Trim whitespace blocks
355 $text .= $chunk if $chunk =~ /\S+/ || !$trim;
356 }
357
358 return $text;
359}
360
361sub _wrap {
362 my ($self, $content, $new) = @_;
363
364 $content = 1 if (my $tree = $self->tree)->[0] eq 'root';
365 $content = 0 if $tree->[0] ne 'root' && $tree->[0] ne 'tag';
366
367 # Find innermost tag
368 my $current;
369 my $first = $new = $self->_parse($new);
370 $current = $first while $first = (_nodes($first, 1))[0];
371 return $self unless $current;
372
373 # Wrap content
374 if ($content) {
375 push @$current, _link($current, _nodes($tree));
376 splice @$tree, _start($tree), $#$tree, _link($tree, _nodes($new));
377 return $self;
378 }
379
380 # Wrap element
381 $self->_replace($self->_parent, $tree, _nodes($new));
382 push @$current, _link($current, $tree);
383 return $self;
384}
385
a292be34 3861;
387
d6512b50 388=encoding utf8
389
a292be34 390=head1 NAME
391
d6512b50 392DOM::Tiny - Minimalistic HTML/XML DOM parser with CSS selectors
a292be34 393
394=head1 SYNOPSIS
395
d6512b50 396 use DOM::Tiny;
397
398 # Parse
399 my $dom = DOM::Tiny->new('<div><p id="a">Test</p><p id="b">123</p></div>');
400
401 # Find
402 say $dom->at('#b')->text;
403 say $dom->find('p')->map('text')->join("\n");
404 say $dom->find('[id]')->map(attr => 'id')->join("\n");
405
406 # Iterate
407 $dom->find('p[id]')->reverse->each(sub { say $_->{id} });
408
409 # Loop
410 for my $e ($dom->find('p[id]')->each) {
411 say $e->{id}, ':', $e->text;
412 }
413
414 # Modify
415 $dom->find('div p')->last->append('<p id="c">456</p>');
416 $dom->find(':not(p)')->map('strip');
417
418 # Render
419 say "$dom";
420
a292be34 421=head1 DESCRIPTION
422
5a70ee9d 423L<DOM::Tiny> is a minimalistic and relaxed pure-perl HTML/XML DOM parser with
424support for the L<HTML Living Standard|https://html.spec.whatwg.org/> and
425L<CSS3 selectors|http://www.w3.org/TR/selectors/> based on L<Mojo::DOM>. It
426will even try to interpret broken HTML and XML, so you should not use it for
427validation.
d6512b50 428
429=head1 NODES AND ELEMENTS
430
431When we parse an HTML/XML fragment, it gets turned into a tree of nodes.
432
433 <!DOCTYPE html>
434 <html>
435 <head><title>Hello</title></head>
436 <body>World!</body>
437 </html>
438
439There are currently eight different kinds of nodes, C<cdata>, C<comment>,
440C<doctype>, C<pi>, C<raw>, C<root>, C<tag> and C<text>. Elements are nodes of
441the type C<tag>.
442
443 root
444 |- doctype (html)
445 +- tag (html)
446 |- tag (head)
447 | +- tag (title)
448 | +- raw (Hello)
449 +- tag (body)
450 +- text (World!)
451
452While all node types are represented as L<DOM::Tiny> objects, some methods like
453L</"attr"> and L</"namespace"> only apply to elements.
454
455=head1 CASE-SENSITIVITY
456
457L<DOM::Tiny> defaults to HTML semantics, that means all tags and attribute
458names are lowercased and selectors need to be lowercase as well.
459
460 # HTML semantics
461 my $dom = DOM::Tiny->new('<P ID="greeting">Hi!</P>');
462 say $dom->at('p[id]')->text;
463
464If XML processing instructions are found, the parser will automatically switch
465into XML mode and everything becomes case-sensitive.
466
467 # XML semantics
468 my $dom = DOM::Tiny->new('<?xml version="1.0"?><P ID="greeting">Hi!</P>');
469 say $dom->at('P[ID]')->text;
470
471XML detection can also be disabled with the L</"xml"> method.
472
473 # Force XML semantics
474 my $dom = DOM::Tiny->new->xml(1)->parse('<P ID="greeting">Hi!</P>');
475 say $dom->at('P[ID]')->text;
476
477 # Force HTML semantics
478 my $dom = DOM::Tiny->new->xml(0)->parse('<P ID="greeting">Hi!</P>');
479 say $dom->at('p[id]')->text;
480
481=head1 METHODS
482
483L<DOM::Tiny> implements the following methods.
484
3793c28f 485=head2 new
486
487 my $dom = DOM::Tiny->new;
488 my $dom = DOM::Tiny->new('<foo bar="baz">I ♥ DOM::Tiny!</foo>');
489
490Construct a new scalar-based L<DOM::Tiny> object and L</"parse"> HTML/XML
491fragment if necessary.
492
d6512b50 493=head2 all_text
494
495 my $trimmed = $dom->all_text;
496 my $untrimmed = $dom->all_text(0);
497
498Extract text content from all descendant nodes of this element, smart
499whitespace trimming is enabled by default.
500
501 # "foo bar baz"
502 $dom->parse("<div>foo\n<p>bar</p>baz\n</div>")->at('div')->all_text;
503
504 # "foo\nbarbaz\n"
505 $dom->parse("<div>foo\n<p>bar</p>baz\n</div>")->at('div')->all_text(0);
506
507=head2 ancestors
508
509 my $collection = $dom->ancestors;
510 my $collection = $dom->ancestors('div ~ p');
511
512Find all ancestor elements of this node matching the CSS selector and return a
513L<DOM::Tiny::Collection> object containing these elements as L<DOM::Tiny>
514objects. All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are supported.
515
516 # List tag names of ancestor elements
517 say $dom->ancestors->map('tag')->join("\n");
518
519=head2 append
520
521 $dom = $dom->append('<p>I ♥ DOM::Tiny!</p>');
522
523Append HTML/XML fragment to this node.
524
525 # "<div><h1>Test</h1><h2>123</h2></div>"
526 $dom->parse('<div><h1>Test</h1></div>')
527 ->at('h1')->append('<h2>123</h2>')->root;
528
529 # "<p>Test 123</p>"
530 $dom->parse('<p>Test</p>')->at('p')
531 ->child_nodes->first->append(' 123')->root;
532
533=head2 append_content
534
535 $dom = $dom->append_content('<p>I ♥ DOM::Tiny!</p>');
536
537Append HTML/XML fragment (for C<root> and C<tag> nodes) or raw content to this
538node's content.
539
540 # "<div><h1>Test123</h1></div>"
541 $dom->parse('<div><h1>Test</h1></div>')
542 ->at('h1')->append_content('123')->root;
543
544 # "<!-- Test 123 --><br>"
545 $dom->parse('<!-- Test --><br>')
546 ->child_nodes->first->append_content('123 ')->root;
547
548 # "<p>Test<i>123</i></p>"
549 $dom->parse('<p>Test</p>')->at('p')->append_content('<i>123</i>')->root;
550
551=head2 at
552
553 my $result = $dom->at('div ~ p');
554
555Find first descendant element of this element matching the CSS selector and
556return it as a L<DOM::Tiny> object or return C<undef> if none could be found.
557All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are supported.
558
559 # Find first element with "svg" namespace definition
560 my $namespace = $dom->at('[xmlns\:svg]')->{'xmlns:svg'};
561
562=head2 attr
563
564 my $hash = $dom->attr;
565 my $foo = $dom->attr('foo');
566 $dom = $dom->attr({foo => 'bar'});
567 $dom = $dom->attr(foo => 'bar');
568
569This element's attributes.
570
571 # Remove an attribute
572 delete $dom->attr->{id};
573
574 # Attribute without value
575 $dom->attr(selected => undef);
576
577 # List id attributes
578 say $dom->find('*')->map(attr => 'id')->compact->join("\n");
579
580=head2 child_nodes
581
582 my $collection = $dom->child_nodes;
583
584Return a L<DOM::Tiny::Collection> object containing all child nodes of this
585element as L<DOM::Tiny> objects.
586
587 # "<p><b>123</b></p>"
588 $dom->parse('<p>Test<b>123</b></p>')->at('p')->child_nodes->first->remove;
589
590 # "<!DOCTYPE html>"
591 $dom->parse('<!DOCTYPE html><b>123</b>')->child_nodes->first;
592
593 # " Test "
594 $dom->parse('<b>123</b><!-- Test -->')->child_nodes->last->content;
595
596=head2 children
597
598 my $collection = $dom->children;
599 my $collection = $dom->children('div ~ p');
600
601Find all child elements of this element matching the CSS selector and return a
602L<DOM::Tiny::Collection> object containing these elements as L<DOM::Tiny>
603objects. All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are supported.
604
605 # Show tag name of random child element
606 say $dom->children->shuffle->first->tag;
607
608=head2 content
609
610 my $str = $dom->content;
611 $dom = $dom->content('<p>I ♥ DOM::Tiny!</p>');
612
613Return this node's content or replace it with HTML/XML fragment (for C<root>
614and C<tag> nodes) or raw content.
615
616 # "<b>Test</b>"
617 $dom->parse('<div><b>Test</b></div>')->at('div')->content;
618
619 # "<div><h1>123</h1></div>"
620 $dom->parse('<div><h1>Test</h1></div>')->at('h1')->content('123')->root;
621
622 # "<p><i>123</i></p>"
623 $dom->parse('<p>Test</p>')->at('p')->content('<i>123</i>')->root;
624
625 # "<div><h1></h1></div>"
626 $dom->parse('<div><h1>Test</h1></div>')->at('h1')->content('')->root;
627
628 # " Test "
629 $dom->parse('<!-- Test --><br>')->child_nodes->first->content;
630
631 # "<div><!-- 123 -->456</div>"
632 $dom->parse('<div><!-- Test -->456</div>')
633 ->at('div')->child_nodes->first->content(' 123 ')->root;
634
635=head2 descendant_nodes
636
637 my $collection = $dom->descendant_nodes;
638
639Return a L<DOM::Tiny::Collection> object containing all descendant nodes of
640this element as L<DOM::Tiny> objects.
641
642 # "<p><b>123</b></p>"
643 $dom->parse('<p><!-- Test --><b>123<!-- 456 --></b></p>')
644 ->descendant_nodes->grep(sub { $_->type eq 'comment' })
645 ->map('remove')->first;
646
647 # "<p><b>test</b>test</p>"
648 $dom->parse('<p><b>123</b>456</p>')
649 ->at('p')->descendant_nodes->grep(sub { $_->type eq 'text' })
650 ->map(content => 'test')->first->root;
651
652=head2 find
653
654 my $collection = $dom->find('div ~ p');
655
656Find all descendant elements of this element matching the CSS selector and
657return a L<DOM::Tiny::Collection> object containing these elements as
658L<DOM::Tiny> objects. All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are
659supported.
660
661 # Find a specific element and extract information
662 my $id = $dom->find('div')->[23]{id};
663
664 # Extract information from multiple elements
665 my @headers = $dom->find('h1, h2, h3')->map('text')->each;
666
667 # Count all the different tags
668 my $hash = $dom->find('*')->reduce(sub { $a->{$b->tag}++; $a }, {});
669
670 # Find elements with a class that contains dots
671 my @divs = $dom->find('div.foo\.bar')->each;
672
673=head2 following
674
675 my $collection = $dom->following;
676 my $collection = $dom->following('div ~ p');
677
678Find all sibling elements after this node matching the CSS selector and return
679a L<DOM::Tiny::Collection> object containing these elements as L<DOM::Tiny>
680objects. All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are supported.
681
682 # List tags of sibling elements after this node
683 say $dom->following->map('tag')->join("\n");
684
685=head2 following_nodes
686
687 my $collection = $dom->following_nodes;
688
689Return a L<DOM::Tiny::Collection> object containing all sibling nodes after
690this node as L<DOM::Tiny> objects.
691
692 # "C"
693 $dom->parse('<p>A</p><!-- B -->C')->at('p')->following_nodes->last->content;
694
695=head2 matches
696
697 my $bool = $dom->matches('div ~ p');
698
699Check if this element matches the CSS selector. All selectors from
700L<DOM::Tiny::CSS/"SELECTORS"> are supported.
701
702 # True
703 $dom->parse('<p class="a">A</p>')->at('p')->matches('.a');
704 $dom->parse('<p class="a">A</p>')->at('p')->matches('p[class]');
705
706 # False
707 $dom->parse('<p class="a">A</p>')->at('p')->matches('.b');
708 $dom->parse('<p class="a">A</p>')->at('p')->matches('p[id]');
709
710=head2 namespace
711
712 my $namespace = $dom->namespace;
713
714Find this element's namespace or return C<undef> if none could be found.
715
716 # Find namespace for an element with namespace prefix
717 my $namespace = $dom->at('svg > svg\:circle')->namespace;
718
719 # Find namespace for an element that may or may not have a namespace prefix
720 my $namespace = $dom->at('svg > circle')->namespace;
721
d6512b50 722=head2 next
723
724 my $sibling = $dom->next;
725
726Return L<DOM::Tiny> object for next sibling element or C<undef> if there are no
727more siblings.
728
729 # "<h2>123</h2>"
730 $dom->parse('<div><h1>Test</h1><h2>123</h2></div>')->at('h1')->next;
731
732=head2 next_node
733
734 my $sibling = $dom->next_node;
735
736Return L<DOM::Tiny> object for next sibling node or C<undef> if there are no
737more siblings.
738
739 # "456"
740 $dom->parse('<p><b>123</b><!-- Test -->456</p>')
741 ->at('b')->next_node->next_node;
742
743 # " Test "
744 $dom->parse('<p><b>123</b><!-- Test -->456</p>')
745 ->at('b')->next_node->content;
746
747=head2 parent
748
749 my $parent = $dom->parent;
750
751Return L<DOM::Tiny> object for parent of this node or C<undef> if this node has
752no parent.
753
754=head2 parse
755
756 $dom = $dom->parse('<foo bar="baz">I ♥ DOM::Tiny!</foo>');
757
758Parse HTML/XML fragment with L<DOM::Tiny::HTML>.
759
760 # Parse XML
761 my $dom = DOM::Tiny->new->xml(1)->parse($xml);
762
763=head2 preceding
764
765 my $collection = $dom->preceding;
766 my $collection = $dom->preceding('div ~ p');
767
768Find all sibling elements before this node matching the CSS selector and return
769a L<DOM::Tiny::Collection> object containing these elements as L<DOM::Tiny>
770objects. All selectors from L<DOM::Tiny::CSS/"SELECTORS"> are supported.
771
772 # List tags of sibling elements before this node
773 say $dom->preceding->map('tag')->join("\n");
774
775=head2 preceding_nodes
776
777 my $collection = $dom->preceding_nodes;
778
779Return a L<DOM::Tiny::Collection> object containing all sibling nodes before
780this node as L<DOM::Tiny> objects.
781
782 # "A"
783 $dom->parse('A<!-- B --><p>C</p>')->at('p')->preceding_nodes->first->content;
784
785=head2 prepend
786
787 $dom = $dom->prepend('<p>I ♥ DOM::Tiny!</p>');
788
789Prepend HTML/XML fragment to this node.
790
791 # "<div><h1>Test</h1><h2>123</h2></div>"
792 $dom->parse('<div><h2>123</h2></div>')
793 ->at('h2')->prepend('<h1>Test</h1>')->root;
794
795 # "<p>Test 123</p>"
796 $dom->parse('<p>123</p>')
797 ->at('p')->child_nodes->first->prepend('Test ')->root;
798
799=head2 prepend_content
800
801 $dom = $dom->prepend_content('<p>I ♥ DOM::Tiny!</p>');
802
803Prepend HTML/XML fragment (for C<root> and C<tag> nodes) or raw content to this
804node's content.
805
806 # "<div><h2>Test123</h2></div>"
807 $dom->parse('<div><h2>123</h2></div>')
808 ->at('h2')->prepend_content('Test')->root;
809
810 # "<!-- Test 123 --><br>"
811 $dom->parse('<!-- 123 --><br>')
812 ->child_nodes->first->prepend_content(' Test')->root;
813
814 # "<p><i>123</i>Test</p>"
815 $dom->parse('<p>Test</p>')->at('p')->prepend_content('<i>123</i>')->root;
816
817=head2 previous
818
819 my $sibling = $dom->previous;
820
821Return L<DOM::Tiny> object for previous sibling element or C<undef> if there
822are no more siblings.
823
824 # "<h1>Test</h1>"
825 $dom->parse('<div><h1>Test</h1><h2>123</h2></div>')->at('h2')->previous;
826
827=head2 previous_node
828
829 my $sibling = $dom->previous_node;
830
831Return L<DOM::Tiny> object for previous sibling node or C<undef> if there are
832no more siblings.
833
834 # "123"
835 $dom->parse('<p>123<!-- Test --><b>456</b></p>')
836 ->at('b')->previous_node->previous_node;
837
838 # " Test "
839 $dom->parse('<p>123<!-- Test --><b>456</b></p>')
840 ->at('b')->previous_node->content;
841
842=head2 remove
843
844 my $parent = $dom->remove;
845
846Remove this node and return L</"root"> (for C<root> nodes) or L</"parent">.
847
848 # "<div></div>"
849 $dom->parse('<div><h1>Test</h1></div>')->at('h1')->remove;
850
851 # "<p><b>456</b></p>"
852 $dom->parse('<p>123<b>456</b></p>')
853 ->at('p')->child_nodes->first->remove->root;
854
855=head2 replace
856
857 my $parent = $dom->replace('<div>I ♥ DOM::Tiny!</div>');
858
859Replace this node with HTML/XML fragment and return L</"root"> (for C<root>
860nodes) or L</"parent">.
861
862 # "<div><h2>123</h2></div>"
863 $dom->parse('<div><h1>Test</h1></div>')->at('h1')->replace('<h2>123</h2>');
864
865 # "<p><b>123</b></p>"
866 $dom->parse('<p>Test</p>')
867 ->at('p')->child_nodes->[0]->replace('<b>123</b>')->root;
868
869=head2 root
870
871 my $root = $dom->root;
872
873Return L<DOM::Tiny> object for C<root> node.
874
875=head2 strip
876
877 my $parent = $dom->strip;
878
879Remove this element while preserving its content and return L</"parent">.
880
881 # "<div>Test</div>"
882 $dom->parse('<div><h1>Test</h1></div>')->at('h1')->strip;
883
884=head2 tag
885
886 my $tag = $dom->tag;
887 $dom = $dom->tag('div');
888
889This element's tag name.
890
891 # List tag names of child elements
892 say $dom->children->map('tag')->join("\n");
893
894=head2 tap
895
896 $dom = $dom->tap(sub {...});
897
e99ef07d 898Equivalent to L<Mojo::Base/"tap">.
d6512b50 899
900=head2 text
901
902 my $trimmed = $dom->text;
903 my $untrimmed = $dom->text(0);
904
905Extract text content from this element only (not including child elements),
906smart whitespace trimming is enabled by default.
907
908 # "foo baz"
909 $dom->parse("<div>foo\n<p>bar</p>baz\n</div>")->at('div')->text;
910
911 # "foo\nbaz\n"
912 $dom->parse("<div>foo\n<p>bar</p>baz\n</div>")->at('div')->text(0);
913
914=head2 to_string
915
916 my $str = $dom->to_string;
917
918Render this node and its content to HTML/XML.
919
920 # "<b>Test</b>"
921 $dom->parse('<div><b>Test</b></div>')->at('div b')->to_string;
922
923=head2 tree
924
925 my $tree = $dom->tree;
926 $dom = $dom->tree(['root']);
927
928Document Object Model. Note that this structure should only be used very
929carefully since it is very dynamic.
930
931=head2 type
932
933 my $type = $dom->type;
934
935This node's type, usually C<cdata>, C<comment>, C<doctype>, C<pi>, C<raw>,
936C<root>, C<tag> or C<text>.
937
938 # "cdata"
939 $dom->parse('<![CDATA[Test]]>')->child_nodes->first->type;
940
941 # "comment"
942 $dom->parse('<!-- Test -->')->child_nodes->first->type;
943
944 # "doctype"
945 $dom->parse('<!DOCTYPE html>')->child_nodes->first->type;
946
947 # "pi"
948 $dom->parse('<?xml version="1.0"?>')->child_nodes->first->type;
949
950 # "raw"
951 $dom->parse('<title>Test</title>')->at('title')->child_nodes->first->type;
952
953 # "root"
954 $dom->parse('<p>Test</p>')->type;
955
956 # "tag"
957 $dom->parse('<p>Test</p>')->at('p')->type;
958
959 # "text"
960 $dom->parse('<p>Test</p>')->at('p')->child_nodes->first->type;
961
962=head2 val
963
964 my $value = $dom->val;
965
966Extract value from form element (such as C<button>, C<input>, C<option>,
967C<select> and C<textarea>) or return C<undef> if this element has no value. In
968the case of C<select> with C<multiple> attribute, find C<option> elements with
969C<selected> attribute and return an array reference with all values or C<undef>
970if none could be found.
971
972 # "a"
973 $dom->parse('<input name="test" value="a">')->at('input')->val;
974
975 # "b"
976 $dom->parse('<textarea>b</textarea>')->at('textarea')->val;
977
978 # "c"
979 $dom->parse('<option value="c">Test</option>')->at('option')->val;
980
981 # "d"
982 $dom->parse('<select><option selected>d</option></select>')
983 ->at('select')->val;
984
985 # "e"
986 $dom->parse('<select multiple><option selected>e</option></select>')
987 ->at('select')->val->[0];
988
989=head2 wrap
990
991 $dom = $dom->wrap('<div></div>');
992
993Wrap HTML/XML fragment around this node, placing it as the last child of the
994first innermost element.
995
996 # "<p>123<b>Test</b></p>"
997 $dom->parse('<b>Test</b>')->at('b')->wrap('<p>123</p>')->root;
998
999 # "<div><p><b>Test</b></p>123</div>"
1000 $dom->parse('<b>Test</b>')->at('b')->wrap('<div><p></p>123</div>')->root;
1001
1002 # "<p><b>Test</b></p><p>123</p>"
1003 $dom->parse('<b>Test</b>')->at('b')->wrap('<p></p><p>123</p>')->root;
1004
1005 # "<p><b>Test</b></p>"
1006 $dom->parse('<p>Test</p>')->at('p')->child_nodes->first->wrap('<b>')->root;
1007
1008=head2 wrap_content
1009
1010 $dom = $dom->wrap_content('<div></div>');
1011
1012Wrap HTML/XML fragment around this node's content, placing it as the last
1013children of the first innermost element.
1014
1015 # "<p><b>123Test</b></p>"
1016 $dom->parse('<p>Test<p>')->at('p')->wrap_content('<b>123</b>')->root;
1017
1018 # "<p><b>Test</b></p><p>123</p>"
1019 $dom->parse('<b>Test</b>')->wrap_content('<p></p><p>123</p>');
1020
1021=head2 xml
1022
1023 my $bool = $dom->xml;
1024 $dom = $dom->xml($bool);
1025
1026Disable HTML semantics in parser and activate case-sensitivity, defaults to
1027auto detection based on processing instructions.
1028
1029=head1 OPERATORS
1030
1031L<DOM::Tiny> overloads the following operators.
1032
1033=head2 array
1034
1035 my @nodes = @$dom;
1036
1037Alias for L</"child_nodes">.
1038
1039 # "<!-- Test -->"
1040 $dom->parse('<!-- Test --><b>123</b>')->[0];
1041
1042=head2 bool
1043
1044 my $bool = !!$dom;
1045
1046Always true.
1047
1048=head2 hash
1049
1050 my %attrs = %$dom;
1051
1052Alias for L</"attr">.
1053
1054 # "test"
1055 $dom->parse('<div id="test">Test</div>')->at('div')->{id};
1056
1057=head2 stringify
1058
1059 my $str = "$dom";
1060
1061Alias for L</"to_string">.
1062
a292be34 1063=head1 BUGS
1064
1065Report any issues on the public bugtracker.
1066
1067=head1 AUTHOR
1068
1069Dan Book <dbook@cpan.org>
1070
1071=head1 COPYRIGHT AND LICENSE
1072
1073This software is Copyright (c) 2015 by Dan Book.
1074
1075This is free software, licensed under:
1076
1077 The Artistic License 2.0 (GPL Compatible)
1078
1079=head1 SEE ALSO
1080
d6512b50 1081L<Mojo::DOM>, L<XML::LibXML>, L<XML::Twig>, L<HTML::TreeBuilder>, L<XML::Smart>