
HTML::DOM::Element::Quote - A Perl class for representing quote elements in an HTML DOM tree

use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('q');
$elem->cite(1); # set attribute
$elem->cite; # get attribute
$elem->tagName;
# etc

This class implements 'q' and 'blockquote' elements in an HTML::DOM tree. It implements the HTMLQuoteElement DOM interface and inherits from HTML::DOM::Element (q.v.).

The only method that this class implements itself, and does not inherit, is cite, which returns the corresponding HTML attribute. If you pass an argument, it will become the new value of the attribute, and the old value will be returned.
