Open
Description
I have a the simplest docx file you can think of - text line with numbering (1. abc) and text line with bullet (* abc) the output for reading the file content with -
print '\n\n'.join([paragraph.text for paragraph in document.paragraphs])
is -
ABC
ABC
I.e it ignores the bullet and the numbering, what is the best way to get the bullets \ numbering? (I use your package via textract although I checked it directly on your package, so I look for a way to do it without diving into the formatting)