Currently, I'm inserting page breaks using the div macro, but the div macro will be going away with the new user experience. What will replace the div macro? I just need something that allows me to add page breaks when exporting to PDF.
If you wound up here like me, here's a good workaround for PDF exports that worked for me, with no macros, plugins, or other shenanigans.
hr { page-break-after:always; visibility: hidden; }
Thank you so much for this tip! It worked like a charm! Exactly what I was looking for!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is amazing! Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is great thanks so much!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!
Just to clarify as of 2023 you need to go to:
Confluence Settings > PDF Export > click to edit PDF Stylesheet and add the code above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where can I find the divider in the instert menu?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Tatiana , on Confluence you can add it with /hr /divider or go to the top menu click on +, and select Divider.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Thiago Schmid, unfortunately it dosn´t work:
do I need a pdf creator?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Tatiana , it seems Atlassian translates the texts of all menus, so in your case it will be called Trennlinie.
Best,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Seems like you need to be a Space Admin to access "Confluence Settings > PDF Export > Edit PDF Stylesheet"
The PDF Export menu option does not appear for me, at least.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Page breaks can be achieved with the regular HTML macro (no extra jira plugin needed) like this:
<div style="page-break-after:always;"></div>
so while editing the page it will look like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Shannon,
The Div Macro can be found in the list of Macros under the "Formatting" category (if you're in the old/current editor). When I add "page-break-after;always;" to the Styles field, I get a nice little macro that I can copy and paste wherever I need a page break in my document (see below). When trying out the new experience, I noticed that the Div Macro is gone. I can't even copy and paste an old macro into the new experience. I'm hoping that something will be added to allow me to add page breaks to a document in a nice, easy way.
Warmest Regards,
Michelle
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Michelle,
Apologies; I see now which macros you're referring to. I've found further information on that Div macro. Essentially, that macro and others like it are part of the Adaptavist Content Formatting Macros for Confluence. Back in 2017, Adaptavist started charging for the add-on, and we started included a few of them to be bundled with Cloud.
At this time, they are being deprecated as part of the new editor, as mentioned here: We're cleaning up the macro browser.
Under Other macros being deprecated:
The other macros listed here do get used, but their main use case is to make content look better and more readable, which is something we're now building into the editing experience as a default. As we're moving closer towards a WYSIWYG (what you see is what you get) editor, we also want to remove macros like this as they have the potential to break pages.
Rollover
Div
Span
Style
JUnit Report
We are tracking feedback on the removal on the threads below:
Please let me know if you have any further questions about this.
Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, Shannon! I'll add my comment / request to the threads that you have mentioned. I appreciate your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Michelle,
Thank you for contacting us about this. I'm not really sure which macro you're referring to, as there's no Div Macro included in Confluence. Could you show me which macro you are currently using for this?
To include page breaks between each new page, you can use the workaround below:
By default, Confluence pages are exported without page breaks, so that shorter pages will appear on the same PDF page.
To make each Confluence page appear on a separate page in the PDF file, add the following rule in the PDF Stylesheet:
CSS - PDF STYLESHEET.pagetitle { page-break-before: always; }
As for being able to include a page break on-demand, there's a feature request below for this:
Please vote on it to show you're interested, and you'll be included on any future updates.
Let me know if you have any questions about this.
Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.