Expected Behavior
first.line
....third.line
Actual Behavior
first.line
....
....third.line
Template Code/MWE
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""first line
third line
"""
from jinja2 import Template
t = Template("{{ multline_string | indent(4) }}")
print(t.render(multline_string=__doc__).replace(" ", "."))
Your Environment
- Python version: 2.7.9-1
- Jinja version: 2.8-1~bpo8+1
Expected Behavior
Actual Behavior
Template Code/MWE
Your Environment