nunjucks-date
v1.5.0
Published
Plugin for nunjucks of momentjs format date
Downloads
6,974
Readme
nunjucks-date
Plugin for nunjucks of momentjs' format date
Installation
npm install nunjucks-date --save
Usage
// Import the plugin
var nunjucksDate = require("nunjucks-date");
// Define a custom default date format. Any valid format works.
// The date format defaults to "YYYY"
// http://momentjs.com/docs/#/displaying/format/
nunjucksDate.setDefaultFormat("MMMM Do YYYY, h:mm:ss a");
// Initialize your Nunjucks enironment
var env = new nunjucks.Environment();
Using default name : 'date'
// Pass the environment to `install()`
nunjucksDate.install(env);
Using custom name
// Pass the environment & a custom filter name
nunjucksDate.install(env, "yourFilterName");
The above is eqivalent to
env.addFilter("date", require("nunjucks-date"));
Tests
- Uses
jest
to run tests to generate code coverage metrics.
npm test
open coverage/lcov-report/index.html
Contributing
Contributions are welcome. Please file issues with any problems that you experience. Pull requests are welcome.