NAME Escape::Houdini - Perl API to Houdini, a zero-dependency C web escaping library VERSION version 0.2.1 SYNOPSIS use Escape::Houdini ':all'; my $escaped = escape_html( '' ); # $escaped is now '<foo>' DESCRIPTION *Escape::Houdini* is a wrapper around the zero-depedency, minimalistic web escaping C library Houdini. This version of *Escape::Houdini* has been built against the commit of Houdini. FUNCTIONS escape_html( $text ) See unescape_html( $text ) See escape_xml( $text ) See escape_uri( $text ) See unescape_uri( $text ) See escape_url( $text ) See unescape_url( $text ) See escape_href( $text ) See escape_js( $text ) See unescape_js( $text ) See EXPORTS *Escape::Houdini* doesn't export any function by default. Functions can be exported individually, or via the tags *:html* (for *escape_html* and *unescape_html*), *:uri* (for *escape_uri* and *unescape_uri*), *:url* (for *escape_url* and *unescape_url*), *:js* (for *escape_js* and *unescape_js*) and *:all* (for... well, all of them). SEE ALSO Houdini (natch) - The active fork currently used - AUTHOR Yanick Champoux COPYRIGHT AND LICENSE This software is copyright (c) 2013 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.