
XML::XSS::Text - XML::XSS text stylesheet rule

version 0.3.1

use XML::XSS;
my $xss = XML::XSS->new;
my $txt_style = $xss->text;
$txt_style->set_pre( "=pod\n" );
$txt_style->set_post( "=cut\n" );
print $xss->render( '<doc>yadah yadah</doc>' );

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

For a document, the displayed attributes follow the template:
pre
[text]
post
Printed before the text.
If defined, its value is used instead of the original text.
Can only accept a sub reference. If defined, the text will be passed to the function as $_ and the returned value will be printed out. Still is applied even if replace is used.
$xss->set( '#text', {
filter => sub { uc },
} );
Printed after the text.
If it resolves to false, skip the element altogether.
Attribute getter.
Attribute setter.

Yanick Champoux <yanick@cpan.org>

This software is copyright (c) 2011 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.