You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
JauresC
changed the title
Using <br><br> in an html question crashes the PDF generation
Using <br><br> in an element of type html crashes the PDF generation
Jul 22, 2024
Hello @JauresC,
It's a known issue caused by the way the jsPDF library processes a duplicated <br> tag. Unfortunately, </br></br> tags are not supported by the jsPDF's from_html method. Please either remove an extra <br> tag or use the image HTML rendering option (htmlRenderAs: "image").
When i use multiple
<br><br>
in an element of type HTML, the generation of the PDF will fail.Here's a simple exemple showing the bug :
https://plnkr.co/edit/HDXSf31SNTLwsCCn
The text was updated successfully, but these errors were encountered: