How do we apply a font name, size, etc to add_run() in python docx.
I have tried the following but it doesn’t work.
run = Document().add_paragraph().add_run()
font = run.font
font.name = “MS Gothic”
Document().add_paragraph().add_run(“Some random text”)