Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
Text::Microformat::Element::rel_tag - a rel-tag element
SYNOPSIS
To add rel-tag to a Text::Microformat schema:
__PACKAGE__->init(
'my-format'
,
schema
=> {
tags
=>
'rel-tag'
,
}
);
To then retrieve tags from a Text::Microformat::Element::hMyFormat instance:
foreach
my
$tag
(@{
$format
->tags}) {
$tag
->MachineValue,
"\n"
;
# print the href
$tag
->HumanValue,
"\n"
;
# print the tag word
}
SEE ALSO
Text::Microformat, http://microformats.org/wiki/rel-tag
AUTHOR
Keith Grennan, <kgrennan at cpan.org>
BUGS
Log bugs and feature requests here: http://code.google.com/p/ufperl/issues/list
SUPPORT
Project homepage: http://code.google.com/p/ufperl/
COPYRIGHT & LICENSE
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.