react-to-pdf
react-to-pdf copied to clipboard
Line cutoff between pages
I just started playing around with this library it looks cool but i ran into the following issue when the content is large enough and a new page is created the line gets cutoff,
here's a screenshot of this
i did see in jsPdf github issues here that this can be resolved by passing
autoPaging: "text"
im just not sure where i would do that here, and if thats really the answer
Very relevant for me as well
This is relevant for me too.
same. There's no way to control a page break which is probably crucial to a lot of people. It can cut between words or images.
+1
Did you find a solution?
+1
+1
+1
+1
+1
+1
+1
+1
It was fixed for me by explicitly stating the margin and format
page: { margin: Margin.LARGE, format: "A4" },
+1