在Jinja2中删除第一个变量标记之前的换行符

时间:2018-01-01 20:30:53

标签: python markdown jinja2

我正在制作一个Jinja2模板来格式化一些文字。

template = jinja2.Template("""+++\nTitle: {{ title }}\ntags:\n+++\n
##Summary:\n\n
##Quote:\n>{{ quote }}\n\n**Citekey**: {{citekey}}\n\n
**Reference**: {{ ref }}\n\n##Comments:""")

输出

+++
Title: 
Transmitting Pain and Itch Messages:
A Contemporary View of the Spinal Cord Circuits that Generate Gate Control
tags:
+++

我想要什么

+++
Title: Transmitting Pain and Itch Messages:A Contemporary View of the Spinal Cord Circuits that Generate Gate Control
tags:
+++

在前一个文本和\n标记之间插入{{title}}。我确定这是关于Jinja2如何处理第一个变量标签的事情,但我不知道该怎么做。

0 个答案:

没有答案