X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README.pod;h=a03394249e241da19c8ba20aebd8ab52aac08e40;hb=4d7ffd9750b680d72934879b281bce45448807a4;hp=29e6d4715813af545cfa6cf3bf07a498318a4f9b;hpb=eb9737f29128e8d0c85fe9d2983abc937c9f3787;p=catagits%2FDOM-Tiny.git diff --git a/README.pod b/README.pod index 29e6d47..a033942 100644 --- a/README.pod +++ b/README.pod @@ -394,7 +394,7 @@ objects. All selectors listed in L are supported. $dom = $dom->append('

I ♥ DOM::Tiny!

'); -Append HTML/XML fragment to this node. +Append HTML/XML fragment to this node (for all node types other than C). # "

Test

123

" $dom->parse('

Test

') @@ -662,7 +662,7 @@ before this node as L objects. $dom = $dom->prepend('

I ♥ DOM::Tiny!

'); -Prepend HTML/XML fragment to this node. +Prepend HTML/XML fragment to this node (for all node types other than C). # "

Test

123

" $dom->parse('

123

') @@ -866,8 +866,8 @@ C if none could be found. $dom = $dom->wrap('
'); -Wrap HTML/XML fragment around this node, placing it as the last child of the -first innermost element. +Wrap HTML/XML fragment around this node (for all node types other than C), +placing it as the last child of the first innermost element. # "

123Test

" $dom->parse('Test')->at('b')->wrap('

123

')->root; @@ -885,8 +885,8 @@ first innermost element. $dom = $dom->wrap_content('
'); -Wrap HTML/XML fragment around this node's content, placing it as the last -children of the first innermost element. +Wrap HTML/XML fragment around this node's content (for C and C +nodes), placing it as the last children of the first innermost element. # "

123Test

" $dom->parse('

Test

')->at('p')->wrap_content('123')->root;