author | lorewang |
Thu, 11 Nov 2010 11:26:32 +0800 | |
changeset 677 | 44e49837144a |
parent 655 | 3f65fd25dfd4 |
permissions | -rw-r--r-- |
655 | 1 |
=head1 NAME |
2 |
||
3 |
XML::DOM::Comment - An XML comment in XML::DOM |
|
4 |
||
5 |
=head1 DESCRIPTION |
|
6 |
||
7 |
XML::DOM::Comment extends L<XML::DOM::CharacterData> which extends |
|
8 |
L<XML::DOM::Node>. |
|
9 |
||
10 |
This node represents the content of a comment, i.e., all the characters |
|
11 |
between the starting '<!--' and ending '-->'. Note that this is the |
|
12 |
definition of a comment in XML, and, in practice, HTML, although some |
|
13 |
HTML tools may implement the full SGML comment structure. |
|
14 |