Jinja2用于字模板

时间:2015-02-12 21:27:40

标签: python jinja2 template-engine docx

我想使用jinja2进行文字模板,就像提到this短篇文章一样。我面临的问题如下,如果我将{{title}}放入我的word文件中,生成的xml可能如下所示:

<w:r><w:t>{{</w:t></w:r><w:proofErr w:type="gramStart"/><w:r><w:t>title</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r><w:t>}}</w:t></w:r></w:p>

所以jinja不可能相应地替换它。是否有可能阻止单词在单独的文本元素中拆分{{title}}? (如果我从文本编辑器复制它工作正常)

2 个答案:

答案 0 :(得分:1)

这是一个与wordErr标签有关的问题。

您有两种解决方案:

  • 如果您想坚持使用Jinja2,您应该始终一次性编写标签。例如,永远不要按退格键或编辑标签。您也可以从其他编辑器中复制/粘贴它。

  • 我写了一个库,Docxtemplater即使文本元素被拆分也能正常工作,例如它会被替换:

    <w:r>
     <w:t>
       {{
     </w:t>
    </w:r>
    <w:proofErr w:type="gramStart"/>
     <w:r>
      <w:t>title</w:t>
     </w:r>
    <w:proofErr w:type="gramEnd"/>
     <w:r>
      <w:t>}}</w:t>
     </w:r>
    

    由:

    <w:r>
      <w:t>
        Your title
      </w:t>
    </w:r>
    <w:proofErr w:type="gramStart"/>
    <w:r>
      <w:t></w:t>
    </w:r>
    <w:proofErr w:type="gramEnd"/>
    <w:r>
      <w:t></w:t>
    </w:r>
    

Docxtemplater可以通过CLI或JS Browser / Node.JS

进行编程

答案 1 :(得分:1)

https://pypi.org/project/docxtpl/也是不错的选择。

它扩展了python-docx,并允许您仅在现有.docx文档中的任何位置放入Jinja2标签,而无需从头开始进行模板制作。

示例:

pip install docxtpl

用法:

from docxtpl import DocxTemplate

doc = DocxTemplate("my_word_template.docx")
context = { 'company_name' : "Dr. Stubbs Orthopedics and Prosthetics" }
doc.render(context)
doc.save("generated_doc.docx")

如果模板my_word_template.docx文件如下所示:

[A .docx file with tags put in it[1]

然后您的generated_doc.docx将如下所示:

A .docx file generated using this leedle program

相对简单,对吧?