Tests
Test: custom-spacing
Template
{{ "one\ntwo\nthree" | indent(6) }}
Output Django (error) v1.10.1
Invalid filter: 'indent'
Output Jinja2 v2.8.0
one
two
three
Output Liquid v3.0.6
one\ntwo\nthree
Output Nunjucks v2.5.0
one
two
three
Output Swig (error) v1.4.2
Invalid filter "indent".
Output Twig (error) v1.24.2
Unknown "indent" filter.
Output Twigjs (error) v0.9.5
Unable to find filter indent
Test: default
Template
{{ "one\ntwo\nthree" | indent }}
Output Django (error) v1.10.1
Invalid filter: 'indent'
Output Jinja2 v2.8.0
one
two
three
Output Liquid v3.0.6
one\ntwo\nthree
Output Nunjucks v2.5.0
one
two
three
Output Swig (error) v1.4.2
Invalid filter "indent".
Output Twig (error) v1.24.2
Unknown "indent" filter.
Output Twigjs (error) v0.9.5
Unable to find filter indent
Test: include-first-line
Template
{{ "one\ntwo\nthree" | indent(6, true) }}
Output Django (error) v1.10.1
Invalid filter: 'indent'
Output Jinja2 v2.8.0
one
two
three
Output Liquid v3.0.6
one\ntwo\nthree
Output Nunjucks v2.5.0
one
two
three
Output Swig (error) v1.4.2
Invalid filter "indent".
Output Twig (error) v1.24.2
Unknown "indent" filter.
Output Twigjs (error) v0.9.5
Unable to find filter indent