65 lines
1.4 KiB
Python
65 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created : 2015-03-26
|
|
|
|
@author: Eric Lapouyade
|
|
"""
|
|
|
|
from docxtpl import DocxTemplate, RichText
|
|
|
|
tpl = DocxTemplate("templates/richtext_tpl.docx")
|
|
|
|
rt = RichText()
|
|
rt.add("a rich text", style="myrichtextstyle")
|
|
rt.add(" with ")
|
|
rt.add("some italic", italic=True)
|
|
rt.add(" and ")
|
|
rt.add("some violet", color="#ff00ff")
|
|
rt.add(" and ")
|
|
rt.add("some striked", strike=True)
|
|
rt.add(" and ")
|
|
rt.add("some Highlighted", highlight="#ffff00")
|
|
rt.add(" and ")
|
|
rt.add("some small", size=14)
|
|
rt.add(" or ")
|
|
rt.add("big", size=60)
|
|
rt.add(" text.")
|
|
rt.add("\nYou can add an hyperlink, here to ")
|
|
rt.add("google", url_id=tpl.build_url_id("http://google.com"))
|
|
rt.add("\nEt voilà ! ")
|
|
rt.add("\n1st line")
|
|
rt.add("\n2nd line")
|
|
rt.add("\n3rd line")
|
|
rt.add("\aA new paragraph : <cool>\a")
|
|
rt.add("--- A page break here (see next page) ---\f")
|
|
|
|
for ul in [
|
|
"single",
|
|
"double",
|
|
"thick",
|
|
"dotted",
|
|
"dash",
|
|
"dotDash",
|
|
"dotDotDash",
|
|
"wave",
|
|
]:
|
|
rt.add("\nUnderline : " + ul + " \n", underline=ul)
|
|
rt.add("\nFonts :\n", underline=True)
|
|
rt.add("Arial\n", font="Arial")
|
|
rt.add("Courier New\n", font="Courier New")
|
|
rt.add("Times New Roman\n", font="Times New Roman")
|
|
rt.add("\n\nHere some")
|
|
rt.add("superscript", superscript=True)
|
|
rt.add(" and some")
|
|
rt.add("subscript", subscript=True)
|
|
|
|
rt_embedded = RichText("an example of ")
|
|
rt_embedded.add(rt)
|
|
|
|
context = {
|
|
"example": rt_embedded,
|
|
}
|
|
|
|
tpl.render(context)
|
|
tpl.save("output/richtext.docx")
|