add line_statement_prefix into texenv

This commit is contained in:
Benjamin Bertrand 2016-11-18 18:09:25 +03:00
parent 1cfcebb665
commit 46397e0bc7
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ texenv = jinja2.Environment(
block_end_string = '}',
variable_start_string = '\Var{',
variable_end_string = '}',
line_statement_prefix = '%-',
line_comment_prefix = '%#',
loader = jinja2.FileSystemLoader(os.path.abspath('.')),
extensions = ['jinja2.ext.do']
)