NAME
HTML::Microformats::hResume - the hResume microformat
SYNOPSIS
use HTML::Microformats::_context;
use HTML::Microformats::hResume;
my $context = HTML::Microformats::_context->new($dom, $uri);
my @resumes = HTML::Microformats::hResume->extract_all(
$dom->documentElement, $context);
foreach my $resume (@resumes)
{
print $resume->get_contact->get_fn . "\n";
}
DESCRIPTION
HTML::Microformats::hResume inherits from HTML::Microformats::BASE. See the base class definition for a description of property getter/setter methods, constructors, etc.
MICROFORMAT
HTML::Microformats::hResume supports hResume as described at http://microformats.org/wiki/hresume.
RDF OUTPUT
The RDF output is modelled on Uldis Bojars' ResumeRDF Ontology http://purl.org/captsolo/resume-rdf/0.2/cv#, with some additional terms from Toby Inkster's hResume vocab <http://ontologi.es/hresume#>.
BUGS
Please report any bugs to http://rt.cpan.org/.
SEE ALSO
HTML::Microformats::BASE, HTML::Microformats::hCard, HTML::Microformats::hCalendar, HTML::Microformats.
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT
Copyright 2008-2010 Toby Inkster
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.