logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Template::Plugin::JavaScript - Encodes text to be safe in JavaScript

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.

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");

Name

       Template::Plugin::JavaScript - Encodes text to be safe in JavaScript

See Also

       Apache::JavaScript::DocumentWrite

perl v5.36.0                                       2022-12-10                  Template::Plugin::JavaScript(3pm)

Synopsis

         [% USE JavaScript %]
         <script type="text/javascript">
         document.write("[% sometext | js %]");
         </script>

See Also