admin管理员组文章数量:1344524
I need a filter like the Jinja "nl2br", but in the Nunjucks. In the documentation are a mention (.html), but I searched it in the nunjucks code (.js) and it does not exist.
Somebody knows how to solve it with a equivalent filter or another solution? Or I need to create the filter?
I need a filter like the Jinja "nl2br", but in the Nunjucks. In the documentation are a mention (https://mozilla.github.io/nunjucks/templating.html), but I searched it in the nunjucks code (https://github./mozilla/nunjucks/blob/master/src/filters.js) and it does not exist.
Somebody knows how to solve it with a equivalent filter or another solution? Or I need to create the filter?
Share Improve this question edited Oct 1, 2016 at 0:36 Renatho De Carli Rosa asked Feb 5, 2016 at 16:43 Renatho De Carli RosaRenatho De Carli Rosa 3791 gold badge3 silver badges8 bronze badges2 Answers
Reset to default 6Nunjucks has built-in escaping. If you set {autoescape: true}
when settings up Nunjucks, then you don't need to do anything. Otherwise, you can use the escape
filter.
If you just want to escape newlines, then do this:
env.addFilter('nl2br', function(str) {
return str.replace(/\r|\n|\r\n/g, '<br />')
})
and use the newly created nl2br
filter.
Note: env
is your Nunjucks environment.
There is now a nl2br
filter in nunjucks (see the documentation)
So i've yout got some unsafe text, but you still want to have new lines changed to <br/>
tags, you can use the following example for the docs
{{ "foo\nbar" | striptags(true) | escape | nl2br }}
which will output
foo<br />\nbar
and be displayed as
foo
bar
本文标签: javascriptNunjucks nl2br does not existStack Overflow
版权声明:本文标题:javascript - Nunjucks nl2br does not exist? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748535a2532213.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论