Query: html::template::compiled::plugin::xmlescape
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
HTML::Template::Compiled::Plugin::XMLEscape(3pm) User Contributed Perl Documentation HTML::Template::Compiled::Plugin::XMLEscape(3pm)NAMEHTML::Template::Compiled::Plugin::XMLEscape - XML-Escaping for HTCSYNOPSISuse HTML::Template::Compiled::Plugin::XMLEscape; my $htc = HTML::Template::Compiled->new( plugin => [qw(HTML::Template::Compiled::Plugin::XMLEscape)], ... );METHODSregister gets called by HTC escape_xml escapes data for XML CDATA. escape_xml_attr escapes data for XML attributesEXAMPLEuse HTML::Template::Compiled::Plugin::XMLEscape; my $htc = HTML::Template::Compiled->new( plugin => [qw(HTML::Template::Compiled::Plugin::XMLEscape)], tagstyle => [qw(-classic -comment -asp +tt)], scalarref => '<foo attr="[%= attribute %]">[%= cdata escape=XML %]</foo>', default_escape => 'XML_ATTR', ); $htc->param( attr => 'foo & bar', cdata => 'text < with > tags', ); print $htc->output; Output: <foo attr="foo & bar">text < with > tags</foo> perl v5.14.2 2012-05-26 HTML::Template::Compiled::Plugin::XMLEscape(3pm)
Similar Topics in the Unix Linux Community |
---|
Installing Dash Shell on OS X Lion |
awk or sed - Convert 2 lines to 1 line |
How can I do this in VI editor? |
Detecting unused variables... |