Files
tinymce-docs-4x/plugins/pagebreak.md
T
Andrew Roberts 6808ef40ad Typos in Plugins
2015-11-14 23:58:01 -08:00

1.6 KiB

layout, title, title_nav, description, keywords, controls
layout title title_nav description keywords controls
default Page Break Plugin Page Break Add a page break. pagebreak insert pagebreak_separator pagebreak_split_block toolbar button, menu item

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.

Type: String

Default Value: "<!-- pagebreak -->"

Example
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>.

pagebreak_separator

Type: String

Example
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "pagebreak",
  menubar: "insert",
  toolbar: "pagebreak"
  pagebreak_separator: "<!-- my page break -->"
});

pagebreak_split_block

When enabled this option makes it easier to split block elements with a page break.

Type: Boolean

Default Value: false

Possible Values: true, false

Example
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "pagebreak",
  menubar: "insert",
  toolbar: "pagebreak"
  pagebreak_split_block: true
});