Adding a page break to a published text artifact fron DNG in RPE

One answer

I will suggest using a post processing macro that calls InsertBreak method wherever there is a horizontal rule in the Word output.
You may be thinking about using Replace() with RegEx to replace '<hr/>' with the following:
'<p style="page-break-after: always;"> </p><p style="page-break-before: always;"> </p>'
But I don't think that works.