python-docx2txt
python-docx2txt copied to clipboard
strikethrough strings are not removed as of now
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