http://www.perlmonks.org?node_id=1064093


in reply to Recognized tags by HTML::Element

Any suggestions for how to get my little bit processed properly?

Nope, ATM its like a word puzzle and my word processor isn't firing on all cylinders :) How do I post a question effectively?

#!/usr/bin/perl -- use strict; use warnings; use Data::Dump qw/ dd pp /; use HTML::Element; use HTML::TreeBuilder; my $v = HTML::Element->new( qw/ VARIF name foo value test / ); $v->push_content("stuff"); print $v->as_HTML,"\n\n"; my $t = HTML::TreeBuilder->new(qw{ ignore_unknown 0 })->parse_content( +q{ <body> <VARIF name="foo" value="test"> stuff </VARIF> }); print $t->as_HTML,"\n\n"; __END__ <varif name="foo" value="test">stuff</varif> <html><head></head><body><varif name="foo" value="test"> stuff </varif +></body></html>

Replies are listed 'Best First'.