Ubuntu Manpages

  use Mojo::DOM::HTML;
  # Turn HTML into DOM tree
  my $html = Mojo::DOM::HTML->new;
  $html->parse('<div><p id="a">A</p><p id="b">B</p></div>');
  my $tree = $html->tree;

Mojo::DOM::HTML is the HTML/XML engine used by Mojo::DOM.

Mojo::DOM::HTML implements the following attributes.

  my $tree = $html->tree;
  $html    = $html->tree(['root', ['text', 'foo']]);

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 processing instructions.

Mojo::DOM::HTML inherits all methods from Mojo::Base and implements the following new ones.

  $html = $html->parse('<foo bar="baz">test</foo>');

Parse HTML/XML fragment.

  my $xml = $html->render;

Render DOM to XML.

Mojolicious, Mojolicious::Guides, <http://mojolicio.us>.