I have created a template and I successfully write to variables like this:
tpl = DocxTemplate(r"template.docx")
context = ({"issue_date" : "16-Jan 2021", "na_us_guid_new": "1. 13-Jan-2021: abc"})
tpl.render(context)
tpl.save(r"testing.docx")
I need to bold and underline this : 13-Jan-2021. But I haven't found any resource. How do I do that?