Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[]


[[new-premium-plugin<s>]]
New Premium plugin<s>
== New Premium plugin<s>

The following new Premium plugin was released alongside {productname} {release-version}.

Expand Down
2 changes: 1 addition & 1 deletion .api-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.0.2
8.1.0
2 changes: 1 addition & 1 deletion antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ asciidoc:
# product variables
productname: TinyMCE
productmajorversion: 8
productminorversion: '8.0'
productminorversion: '8.1.0'
##### product name in codeblock
prodnamecode: tinymce
#### more names
Expand Down
21 changes: 21 additions & 0 deletions modules/ROOT/examples/live-demos/fullpagehtml/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<textarea id="fullpagehtml">
<h1>Welcome to Full Page HTML Editing</h1>
<p>This demo demonstrates the capabilities of the <span class="highlight">Full Page HTML plugin</span>. You can:</p>
<ul>
<li>Edit document metadata including title, description, and keywords by clicking the <strong>Full Page HTML</strong> button in the toolbar</li>
<li>Modify HTML document structure and DOCTYPE</li>
<li>Customize body styles and document properties</li>
<li>View and edit the complete HTML structure in source code view or preview plugin under <strong>File</strong> in the menubar</li>
</ul>
<h2>Getting Started</h2>
<p>Click the <strong>Full Page HTML</strong> button in the toolbar to open the document properties dialog. From there, you can modify:</p>
<ul>
<li><strong>Document Title:</strong> Change the page title that appears in browser tabs</li>
<li><strong>Keywords:</strong> Add SEO keywords for search engines</li>
<li><strong>Description:</strong> Set the meta description for search results</li>
<li><strong>Body Style:</strong> Apply custom CSS styles to the document body</li>
<li><strong>HTML Structure:</strong> Modify DOCTYPE and encoding settings</li>
</ul>
<p>Try editing this content and then use the Full Page HTML button to see how the plugin manages the complete document structure!</p>
<p>To view the modified changes open preview which can be found under <strong>File</strong> in the menubar</p>
</textarea>
16 changes: 16 additions & 0 deletions modules/ROOT/examples/live-demos/fullpagehtml/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
tinymce.init({
selector: 'textarea#fullpagehtml',
height: '800px',
plugins: [
"fullpagehtml", "advlist", "anchor", "autolink", "charmap", "code", "fullscreen",
"help", "image", "insertdatetime", "link", "lists", "media",
"preview", "searchreplace", "table", "visualblocks",
],
toolbar: "fullpagehtml | undo redo | styles | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
// Full Page HTML Plugin Configuration Options
fullpagehtml_default_doctype: '<!DOCTYPE html>',
fullpagehtml_default_title: 'Full Page HTML Plugin Demo Document',
fullpagehtml_default_encoding: 'UTF-8',
fullpagehtml_default_body_style: 'margin: 20px; padding: 15px; font-family: Georgia, Times, serif; font-size: 16px; color: #2c3e50;',
fullpagehtml_hide_in_source_view: false // Show full page HTML in source view
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 0 additions & 10 deletions modules/ROOT/images/icons/document-properties.svg

This file was deleted.

10 changes: 10 additions & 0 deletions modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@
***** xref:export-to-word-with-jwt-authentication-php.adoc[PHP]
*** xref:footnotes.adoc[Footnotes]
*** xref:formatpainter.adoc[Format Painter]
*** xref:fullpagehtml.adoc[Full Page HTML]
*** xref:importword.adoc[Import from Word]
**** xref:docx-to-html-converter-api.adoc[DOCX to HTML Converter API]
**** JWT Authentication
Expand Down Expand Up @@ -414,6 +415,15 @@
** xref:tinymce-and-cors.adoc[Cross-Origin Resource Sharing (CORS)]
* Release information
** xref:release-notes.adoc[Release notes for {productname}]
*** {productname} 8.1.0
**** xref:8.1.0-release-notes.adoc#overview[Overview]
**** xref:8.1.0-release-notes.adoc#new-premium-plugin[New Premium plugin]
**** xref:8.1.0-release-notes.adoc#accompanying-premium-plugin-changes[Accompanying Premium plugin changes]
**** xref:8.1.0-release-notes.adoc#improvements[Improvements]
**** xref:8.1.0-release-notes.adoc#changes[Changes]
**** xref:8.1.0-release-notes.adoc#bug-fixes[Bug fixes]
**** xref:8.1.0-release-notes.adoc#deprecated[Deprecated]
**** xref:8.1.0-release-notes.adoc#known-issues[Known issues]
*** {productname} 8.0.2
**** xref:8.0.2-release-notes.adoc#overview[Overview]
**** xref:8.0.2-release-notes.adoc#accompanying-premium-plugin-changes[Accompanying Premium plugin changes]
Expand Down
Loading