This Plugin adds a Paper-Size button to the Summernote toolbar that lets you change the editing view size to reflect Paper Sizes in Portrait format.
Include the following code after Summernote:
<script src="summernote-print-size.js"></script>
<script src="lang/[language-COUNTRY].js"></script>
Supported languages can be found in the lang
folder, and should be included after the plugin, then setting the chosen language when initialising Summernote.
$('.summernote').summernote({
toolbar:[
['paperSize',['paperSize']], // The Button
['style',['style']],
['font',['bold','italic','underline','clear']],
['fontname',['fontname']],
['color',['color']],
['para',['ul','ol','paragraph']],
['height',['height']],
['table',['table']],
['insert',['media','link','hr']],
['view',['fullscreen','codeview']],
['help',['help']]
],
save:{
lang: 'en-US' // Change to your chosen language
}
});