NAME
    HTML::HTML5::Microdata::Parser - fairly experimental parser for HTML
    'microdata'
SYNOPSIS
      use HTML::HTML5::Microdata::Parser;
  
      my $parser = HTML::HTML5::Microdata::Parser->new($html, $baseURI);
      my $graph  = $parser->graph;
DESCRIPTION
    This package aims to have a roughly compatible API to RDF::RDFa::Parser.
    Microdata is an experimental metadata format, not in wide use. Use this
    module at your own risk.
    $p = HTML::HTML5::Microdata::Parser->new($html, $baseuri, \%options,
    $storage)
            This method creates a new HTML::HTML5::Microdata::Parser object
            and returns it.
            The $xhtml variable may contain an XHTML/XML string, or a
            XML::LibXML::Document. If a string, the document is parsed using
            HTML::HTML5::Parser and HTML::HTML5::Sanity, which may throw an
            exception. HTML::HTML5::Microdata::Parser does not catch the
            exception.
            The base URI is used to resolve relative URIs found in the
            document.
            Options [default in brackets]:
              * alt_stylesheet  - Magic rel="alternate stylesheet". [1]
              * auto_config     - See section "Auto Config" [0]
              * mhe_lang        - Process  element more nicely. [0]
              * xhtml_title     - Process  element. [1]
              * xml_lang        - Process @xml:lang. [1]
            $storage is an RDF::Trine::Storage object. If undef, then a new
            temporary store is created.
    $p->xhtml
            Returns the HTML source of the document being parsed.
    $p->uri Returns the base URI of the document being parsed. This will
            usually be the same as the base URI provided to the constructor,
            but may differ if the document contains a .
COPYRIGHT AND LICENSE
    Copyright (C) 2009-2010 by Toby Inkster
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself, either Perl version 5.8.1 or, at
    your option, any later version of Perl 5 you may have available.