We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0517134 + 09c8dd1 commit 647ee97Copy full SHA for 647ee97
1 file changed
docx.py
@@ -752,6 +752,8 @@ def getdocumenttext(document):
752
if element.tag == '{'+nsprefixes['w']+'}t':
753
if element.text:
754
paratext = paratext+element.text
755
+ elif element.tag == '{'+nsprefixes['w']+'}tab':
756
+ paratext = paratext + '\t'
757
# Add our completed paragraph text to the list of paragraph text
758
if not len(paratext) == 0:
759
paratextlist.append(paratext)
0 commit comments