Return a newly created paragraph, inserted directly before this paragraph.
(self)
| 168 | self.add_run(text) |
| 169 | |
| 170 | def _insert_paragraph_before(self): |
| 171 | """Return a newly created paragraph, inserted directly before this paragraph.""" |
| 172 | p = self._p.add_p_before() |
| 173 | return Paragraph(p, self._parent) |