Python docx:获取插入/删除/修改的段落/元素

时间:2018-07-16 12:10:30

标签: python python-docx

在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

他们有可能使用此功能并获得修改后的段落吗?

0 个答案:

没有答案