在docx中,我有几个段落被标记为已插入,已删除或已通过曲目更改进行了修改。
Python-docx
在我使用功能Document.paragraphs()
时没有看到它们,如文档中所述:
@property
def paragraphs(self):
"""
A list of |Paragraph| instances corresponding to the paragraphs in
the document, in document order. Note that paragraphs within revision
marks such as ``<w:ins>`` or ``<w:del>`` do not appear in this list.
"""
return self._body.paragraphs
他们有可能使用此功能并获得修改后的段落吗?