Primefaces 6.1 new Text Editor component is using QuillJS 1.22 for rich text editing. Unfortunately this editor is parsing html code in his own way. When I put this in backing bean variable:
<p>a<br>a<br>a</p>
I end up with this:
<p>a</p>
<p><br></p>
<p>a</p>
<p><br></p>
<p>a</p>
Is there option to insert directly html code to an QuillJS editor from Primefaces?