You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when docx2txt.process('file') is used, it does not eliminate strikethrough text. Is it possible to fix this?
Note: python-docx does have a way to remove strikethrough text.
example:
for para in file.paragraphs:
for run in para.runs:
if run.font.strike:
continue
Thanks
The text was updated successfully, but these errors were encountered:
when docx2txt.process('file') is used, it does not eliminate strikethrough text. Is it possible to fix this?
Note: python-docx does have a way to remove strikethrough text.
example:
for para in file.paragraphs:
for run in para.runs:
if run.font.strike:
continue
Thanks
The text was updated successfully, but these errors were encountered: