Page Break plugin
This plugin adds page break support and enables a user to insert page breaks in the editable area. This is useful where a CMS uses a special separator to break content into pages.
It also adds a toolbar button and a menu item Page break
under the Insert
menu dropdown.
Basic setup
tinymce.init({
selector: 'textarea', // change this value according to your html
plugins: 'pagebreak',
menubar: 'insert',
toolbar: 'pagebreak'
});
Options
These settings affect the execution of the pagebreak
plugin. They enable you to specify how the page break should be generated in the HTML source code and determine whether the page break element(s) should be wrapped in <p>
tags</p>
.