NAME
XML::XSS::Comment - XML::XSS comment stylesheet rule
VERSION
version 0.1_0
SYNOPSIS
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>' );
DESCRIPTION
A XML::XSS
rule that matches against the comment nodes of a document to be rendered.
RENDERING ATTRIBUTES
For a document, the displayed attributes follow the template:
pre
[text]
post
process, pre, showtag, rename, post
Same attribute behaviors as in XML::XSS::Element
.
replace, filter
Same attribute behaviors as in XML::XSS::Text
.