Generate all `w:p` and `w:tbl` elements in this document-body. Elements appear in document order. Elements shaded by nesting in a `w:ins` or other "wrapper" element will not be included.
(self)
| 485 | |
| 486 | @property |
| 487 | def inner_content_elements(self) -> list[CT_P | CT_Tbl]: |
| 488 | """Generate all `w:p` and `w:tbl` elements in this document-body. |
| 489 | |
| 490 | Elements appear in document order. Elements shaded by nesting in a `w:ins` or |
| 491 | other "wrapper" element will not be included. |
| 492 | """ |
| 493 | return self.xpath("./w:p | ./w:tbl") |
| 494 | |
| 495 | def iter_block_items(self): |
| 496 | """Generate a reference to each of the block-level content elements in this |