— |
=head1 NAME
HTML::DOM::Element::Quote - A Perl class for representing quote elements in an HTML DOM tree
=head1 SYNOPSIS
$doc = HTML::DOM->new;
$elem = $doc ->createElement( 'q' );
$elem ->cite(1);
$elem ->cite;
$elem ->tagName;
=head1 DESCRIPTION
This class implements 'q' and 'blockquote' elements in an HTML::DOM tree.
It
implements the HTMLQuoteElement DOM interface and inherits from
L<HTML::DOM::Element> ( q.v. ).
=head1 METHODS
The only method that this class implements itself, and does not inherit, is
C<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.
=head1 SEE ALSO
L<HTML::DOM>
L<HTML::DOM::Element>
|