PDF Note Export - only one page exportet

I am pretty new in Obsidian and I like it very much!
I tried to export a longer note (about 3 pages) into PDF, but I only get just one page as result.
It exports the text which fits on the first page and cut it off there.
Is there a possibility to export the whole note in PDF?

Best regards
Chairon

Perhaps this information is important too. I am working on a Microsoft Surface Pro.

Sounds strange, indeed.

Did you try all the troubleshooting steps yet (linked in the template when you created this topic)?

Same here ! I use this feature all the time an today after installing 1.9.3 the PDF export stops after 1 page

Oh, so this is a v1.9.3 issue for you (maybe not the OP)?

I’ll check in a bit when I get home.

yes I searched, but didn’t find anything.
I have also the version 1.9.3 now. (payed 25$ support)
I have the Obsidian Version 1.9.2 on MacBook and here it works fine.

This is important info to share up front when creating a topic. Again, I’ll have a look on desktop later.

edit: it seems an issue with v1.9.3. Hang in there :flexed_biceps:.

I have a workaround, so that you can add page break manually:

first create snippet in .obsidian/snippets/, such as a page_break.css, with the following css code:

@media print {
  hr {
    page-break-after: always;
  }
}

Then in the ā€˜obsidian->setting->Appearance’, you can scroll down to the bottom, and enable the snippet that you created (ā€œpage_breakā€).

Then, in the note where you want to add a page breaker, add

---

Then, export the note as PDF.

Let’s take the Start Here note in the sandbox vault as an example. The note looks like:

The exported pdf of this note is splitted into multiple pages, which looks like:

1 Like

Yes it sure is, I updated my Macbook now and there is the same thing now.
Just for your information.

PDF export is working as expected in v1.9.4. :partying_face:

1 Like

WOW - You are really fast!!
Thank you for this amazing support here!
Obsidian is the right choice !!!

Thank you!

Nothing to do with me; all the Obsidian team. Just passing on the news.

@ariehen
I tested the always flag and it works.
But is there a reason why avoid is not working?