我正在制作一个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如何处理第一个变量标签的事情,但我不知道该怎么做。