Ability to choose where page breaks in PDF

Use case or problem

I was trying to export a page into a PDF, but the PDF was broken up in strange places.

Proposed solution

I was thinking to implement some way to make three dashes (—) make a break in the PDF, moving the following content onto the next page.

Markdown does not support page breaks. A kludge is to use html code or css.

Here are some general ideas.

As always without standards, YMMV.


JJW

3 Likes

I see. Thanks!

What I’ve done is use BetterTouchTool (i’m on a mac) and set cmd+alt+shit+n to paste in the following HTML:

<div style="page-break-after: always;"></div>

Not the cleanest solution, but it works for me!

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.