0
You can take the html created in Summernote 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 summernote html on it:
$('#htmlGerado').html(htmlPagina);