import pypandoc
output = pypandoc.convert_file('file.html', 'docx', outputfile="file1.docx")
assert output == ""
It is generating new docx file but ignoring styles.
Can any one tell me how to generate new docx file with styles?
Thanks in advance for your answers.