-
-
15 Dec 2010 19:46:23 UTC
- Distribution: Template-Plugin-JavaScript
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (1433 / 5 / 0)
- Kwalitee
Bus factor: 1- 90.24% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (1.84KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Template
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Template::Plugin::JavaScript - Encodes text to be safe in JavaScript
SYNOPSIS
[% USE JavaScript %] <script type="text/javascript"> document.write("[% sometext | js %]"); </script>
DESCRIPTION
Template::Plugin::JavaScript is a TT filter that filters text so it can be safely used in JavaScript quotes.
[% USE JavaScript %] document.write("[% FILTER js %] Here's some text going on. [% END %]");
will become:
document.write("\nHere\'s some text going on.\n");
AUTHOR
The original idea comes from Movable Type's
encode_js
global filter.Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Module Install Instructions
To install Template::Plugin::JavaScript, copy and paste the appropriate command in to your terminal.
cpanm Template::Plugin::JavaScript
perl -MCPAN -e shell install Template::Plugin::JavaScript
For more information on module installation, please visit the detailed CPAN module installation guide.