use Mojo::DOM::HTML; # Turn HTML into DOM tree my $html = Mojo::DOM::HTML->new; $html->parse('<div><p id="a">Test</p><p id="b">123</p></div>'); my $tree = $html->tree;
my $str = tag_to_html 'div', id => 'foo', 'safe content';
Generate HTML/XML tag and render it right away. This is a significantly faster alternative to ``tag'' for template systems that have to generate a lot of tags.
my $tree = $html->tree; $html = $html->tree(['root']);
Document Object Model. Note that this structure should only be used very carefully since it is very dynamic.
my $bool = $html->xml; $html = $html->xml($bool);
Disable HTML semantics in parser and activate case-sensitivity, defaults to auto-detection based on XML declarations.
$html = $html->parse('<foo bar="baz">I ♥ Mojolicious!</foo>');
my $str = $html->render;
$html = $html->tag('div', id => 'foo', 'safe content');