Good morning, I wanted a little help and tips to make the text editor summernote open a web page, for example in a page I'm typing the HTML normally and click to see the code, it would appear the page ready.
example:
You can get the html created in SummerNote in this way:
var htmlPagina = $('#idDoEditor').summernote('code');
Create a div where you want to put the result:
<div id="htmlGerado"></div>
And with jquery play the summernote html on it:
$('#htmlGerado').html(htmlPagina);