The DOCX plugin only supports keeping the contents of a single paragrpah on the same page, not multiple paragraphs. If you want to keep a set of paragrpahs together in EPUB you need to wrap them in div tags like this
<div style="page-break-inside:avoid">
<p>
<p>
...
</div>
|