Skip to content
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3ee3042
DOC-3209: TinyMCE 8.1.0 Release Documentation and Community Changelog.
kemister85 Aug 19, 2025
942ba64
DOC-3209: Add placeholder for changelog.
kemister85 Aug 19, 2025
5076d1d
DOC-3209: Added keyboard navigation to the Suggested Edits plugin. (#…
kemister85 Sep 14, 2025
0a3aba0
DOC-3209: Cursor movement did not operate correctly after a figure wa…
kemister85 Sep 14, 2025
92de173
DOC-3209: AI Assistant plugin dialog preview now respects the `conten…
kemister85 Sep 14, 2025
4d07ec4
DOC-3209: Users without avatars now display avatar placeholders in th…
kemister85 Sep 14, 2025
3f53baa
DOC-3209: Default avatars generated inconsistently. (#3852)
kemister85 Sep 15, 2025
14affb5
DOC-3209: The same user could receive two different default avatars &…
kemister85 Sep 15, 2025
459d11f
DOC-3209: Navigating between elements with contenteditable=true was n…
kemister85 Sep 15, 2025
4e98498
DOC-3209: Clicking on a "non selectable" element when the selection i…
kemister85 Sep 15, 2025
63c3f74
DOC-3209: alt text length error message now shows current and maximum…
kemister85 Sep 15, 2025
44096e2
DOC-3209: Tooltips can now remain open when hovered. (#3842)
kemister85 Sep 15, 2025
f3cbeed
DOC-3209: Image previews sometimes showed the wrong image from a srcs…
kemister85 Sep 15, 2025
f822183
DOC-3209: Improved keyboard navigation in Comments dropdown when inse…
kemister85 Sep 15, 2025
f8631e3
DOC-3209: Empty editor operations sometimes showed as modified instea…
kemister85 Sep 15, 2025
ffa8cee
DOC-3209: `editor.getContent()` now includes `indent` and `entity_enc…
kemister85 Sep 15, 2025
59626d4
DOC-3209: NVDA would announce `iframe_aria_text` multiple times. (#3836)
kemister85 Sep 15, 2025
63c5ee1
DOC-3209: Using Command + Backspace would not preserve inline formatt…
kemister85 Sep 15, 2025
3fb1446
DOC-3209: Spellcheck could create an invalid selection if the first e…
kemister85 Sep 15, 2025
2348425
DOC-2309: Links inserted with `&` encoding are now decoded to & b…
kemister85 Sep 15, 2025
5ecb6b1
DOC-3209: Auto-suggest `alt` text from existing `alt`, `aria-label`, …
kemister85 Sep 15, 2025
977248b
DOC-3267: Deprecate content_css_cors option (#3835)
michalnieruchalski-tiugo Sep 16, 2025
2f0835d
DOC-3209: Add changelog, fix syntax issues and general pre-release cl…
kemister85 Sep 16, 2025
3f55abd
DOC-3264: New feature documentation for `fullpagehtml`. (#3827)
kemister85 Sep 16, 2025
64dab7f
Update modules/ROOT/nav.adoc
kemister85 Sep 16, 2025
edde101
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 16, 2025
a014380
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
65b9c8f
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
c4ba802
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
fafdccb
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
e011c9d
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
4f3615a
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 Sep 17, 2025
e198865
DOC-3209: update api-reference version and fix nav.adoc order for ful…
kemister85 Sep 17, 2025
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
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
});
1 change: 1 addition & 0 deletions modules/ROOT/images/icons/default-document-properties.svg
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.

5 changes: 2 additions & 3 deletions modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@
**** JWT Authentication
***** xref:export-to-word-with-jwt-authentication-nodejs.adoc[Node.js]
***** xref:export-to-word-with-jwt-authentication-php.adoc[PHP]
*** xref:fullpagehtml.adoc[Full Page HTML]
*** xref:footnotes.adoc[Footnotes]
*** xref:formatpainter.adoc[Format Painter]
*** xref:importword.adoc[Import from Word]
Expand Down Expand Up @@ -416,13 +417,11 @@
** 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-plugins[New Premium plugins]
**** 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#additions[Additions]
**** 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#security-fixes[Security 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
Expand Down
Loading