nunjucks-autoescape

Nunjucks extension that brings a 'autoescape' tag

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
nunjucks-autoescape
201.0.18 years ago9 years agoMinified + gzip package size for nunjucks-autoescape in KB

Readme

Nunjucks autoescape
Build Status NPM version
Nunjucks extension that brings a "autoescape" tag

How to install it?

$ npm install nunjucks-autoescape

How to use it?

var AutoEscapeExtension = require("nunjucks-autoescape")(nunjucks);

env.addExtension('AutoEscapeExtension', new AutoEscapeExtension(env));

{% autoescape false %}
The variable {{ test }} is not escaped!
{% endautoescape %}