Skip to content

Commit

Permalink
even more Unicode characters in Mojo::DOM examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 1, 2014
1 parent 26f8b8d commit 149ede8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Mojo/DOM.pm
Expand Up @@ -471,7 +471,7 @@ All selectors from L<Mojo::DOM::CSS> are supported.
=head2 append
$dom = $dom->append('<p>Hi!</p>');
$dom = $dom->append('<p>I ♥ Mojolicious!</p>');
Append HTML/XML fragment to element.
Expand All @@ -480,7 +480,7 @@ Append HTML/XML fragment to element.
=head2 append_content
$dom = $dom->append_content('<p>Hi!</p>');
$dom = $dom->append_content('<p>I ♥ Mojolicious!</p>');
Append HTML/XML fragment to element content.
Expand Down Expand Up @@ -618,7 +618,7 @@ Parse HTML/XML fragment with L<Mojo::DOM::HTML>.
=head2 prepend
$dom = $dom->prepend('<p>Hi!</p>');
$dom = $dom->prepend('<p>I ♥ Mojolicious!</p>');
Prepend HTML/XML fragment to element.
Expand All @@ -627,7 +627,7 @@ Prepend HTML/XML fragment to element.
=head2 prepend_content
$dom = $dom->prepend_content('<p>Hi!</p>');
$dom = $dom->prepend_content('<p>I ♥ Mojolicious!</p>');
Prepend HTML/XML fragment to element content.
Expand Down

0 comments on commit 149ede8

Please sign in to comment.