Full Page plugin
The Full Page plugin (fullpage) was deprecated with the release of TinyMCE 5.9. For details, see the Full Page plugin deprecation notice. The Full Page plugin will be removed in TinyMCE 6.0.
|
This plugin allows user to edit certain metadata and document properties such as title, keywords, and description. This is done via a dialog box which appears after pressing a control added to the toolbar. If the code plugin is enabled fullpage exposes <head>, <body> and various meta tags in source code view.
The plugin also adds a Metadata and Document properties menu under the File menu and button to the toolbar.
Basic setup
tinymce.init({
selector: 'textarea', // change this value according to your HTML
plugins: 'fullpage',
menubar: 'file',
toolbar: 'fullpage'
});
Options
These settings affect the execution of the fullpage plugin. Many of the settings allow you to specify default values for the full page editing process.
fullpage_default_doctype
This option enables you to specify the default doctype for the output HTML.
Type: String
fullpage_default_encoding
This option enables you to specify the default encoding for the output HTML.
Type: String
fullpage_default_font_size
This option enables you to specify the default font size for the body element.
Type: String
fullpage_default_font_family
This option enables you to specify the default font family for the body element.
Type: String
fullpage_default_title
This option enables you to specify the default title for the output HTML.
Type: String
fullpage_default_text_color
This option enables you to specify the default text color for the body element.
Type: String
fullpage_default_xml_pi
This option enables you to specify if a XML declaration should be added or not true/false option.
Type: Boolean
Possible Values: true, false