1.0.1 • Published 9 years ago

nunjucks-autoescape v1.0.1

Weekly downloads
908
License
Apache 2
Repository
github
Last release
9 years ago

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 %}