changeset 662 | 60be34e1b006 |
parent 655 | 3f65fd25dfd4 |
654:7c11c3d8d025 | 662:60be34e1b006 |
---|---|
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 |