
XML::XSS::Comment - XML::XSS comment stylesheet rule

version 0.1.3

use XML::XSS;
my $xss = XML::XSS->new;
my $cmt_style = $xss->comment;
$cmt_style->set_filter( sub { s/^/#/gm; $_ } );
print $xss->render( '<doc><!-- foo -->yadah yadah</doc>' );

A XML::XSS rule that matches against the comment nodes of a document to be rendered.

For a document, the displayed attributes follow the template:
pre
[text]
post
Same attribute behaviors as in XML::XSS::Element.
Same attribute behaviors as in XML::XSS::Text.

Yanick Champoux <yanick@cpan.org>

This software is copyright (c) 2010 by Yanick Champoux.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.