diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-09-27 17:27:19 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-09-27 17:27:19 -0400 |
commit | c0fa4e7ded7c3dee6de16292985249af7d716f41 (patch) | |
tree | fe789a5a12b17aacbd5b8f3082a07b561e763187 /js/README.mkd | |
parent | a682532f8b9f59915362d2fb24bc15596ea1cbef (diff) | |
download | luigi-template-c0fa4e7ded7c3dee6de16292985249af7d716f41.tar.bz2 luigi-template-c0fa4e7ded7c3dee6de16292985249af7d716f41.zip |
wording updates
Diffstat (limited to 'js/README.mkd')
-rw-r--r-- | js/README.mkd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/README.mkd b/js/README.mkd index 0383a79..4d2cd3f 100644 --- a/js/README.mkd +++ b/js/README.mkd @@ -7,20 +7,20 @@ Simple JavaScript string templating library inspired by [Unix pipes][pipe]. Features: -* Filters via piping, with common filters built-in. +* Chainable filters, via piping. * Useful built-in filters. * Template caching. * Small: Less than 4k minified (see `luigi-template.min.js`), * Stand-alone: No external dependencies (no jQuery, etc), -* Compatible: Works in browsers as old as IE9 -* MIT-licensed +* Compatible: Works in browsers as old as IE9. +* MIT-licensed. Installation ------------ Minify `luigi-template.js` using your minifier of choice, and drop it into your source tree. I like [jsmin][], personally: - jsmin < luigi-template.js > luigi-template.min.js + jsmin < luigi-template.js > luigi-template-0.5.0.min.js *Note:* If you are upgrading from a pre-0.5.0 version of Luigi Template, be sure to include `luigi-compat.js` as well. See the *Changes in |