Forum How do I...?

Insert blank page at the end of pdf

Billpaxtonn
Hi!

I'm currently generating ebooks from markdown files, and was wondering, how do I insert a blank page at the end of the ebook, that would basically function as a back cover when duplex printing?
mikeday
You could do something like this in your CSS:
:root::after {
    content: ' ';
    display: block;
    page-break-before: always
}

Edited by mikeday