-
Notifications
You must be signed in to change notification settings - Fork 221
DOC-3209: TinyMCE 8.1.0 Release Documentation and Community Changelog. #3824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
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 942ba64
DOC-3209: Add placeholder for changelog.
kemister85 5076d1d
DOC-3209: Added keyboard navigation to the Suggested Edits plugin. (#…
kemister85 0a3aba0
DOC-3209: Cursor movement did not operate correctly after a figure wa…
kemister85 92de173
DOC-3209: AI Assistant plugin dialog preview now respects the `conten…
kemister85 4d07ec4
DOC-3209: Users without avatars now display avatar placeholders in th…
kemister85 3f53baa
DOC-3209: Default avatars generated inconsistently. (#3852)
kemister85 14affb5
DOC-3209: The same user could receive two different default avatars &…
kemister85 459d11f
DOC-3209: Navigating between elements with contenteditable=true was n…
kemister85 4e98498
DOC-3209: Clicking on a "non selectable" element when the selection i…
kemister85 63c3f74
DOC-3209: alt text length error message now shows current and maximum…
kemister85 44096e2
DOC-3209: Tooltips can now remain open when hovered. (#3842)
kemister85 f3cbeed
DOC-3209: Image previews sometimes showed the wrong image from a srcs…
kemister85 f822183
DOC-3209: Improved keyboard navigation in Comments dropdown when inse…
kemister85 f8631e3
DOC-3209: Empty editor operations sometimes showed as modified instea…
kemister85 ffa8cee
DOC-3209: `editor.getContent()` now includes `indent` and `entity_enc…
kemister85 59626d4
DOC-3209: NVDA would announce `iframe_aria_text` multiple times. (#3836)
kemister85 63c5ee1
DOC-3209: Using Command + Backspace would not preserve inline formatt…
kemister85 3fb1446
DOC-3209: Spellcheck could create an invalid selection if the first e…
kemister85 2348425
DOC-2309: Links inserted with `&` encoding are now decoded to & b…
kemister85 5ecb6b1
DOC-3209: Auto-suggest `alt` text from existing `alt`, `aria-label`, …
kemister85 977248b
DOC-3267: Deprecate content_css_cors option (#3835)
michalnieruchalski-tiugo 2f0835d
DOC-3209: Add changelog, fix syntax issues and general pre-release cl…
kemister85 3f55abd
DOC-3264: New feature documentation for `fullpagehtml`. (#3827)
kemister85 64dab7f
Update modules/ROOT/nav.adoc
kemister85 edde101
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 a014380
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 65b9c8f
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 c4ba802
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 fafdccb
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 e011c9d
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 4f3615a
Update modules/ROOT/pages/8.1.0-release-notes.adoc
kemister85 e198865
DOC-3209: update api-reference version and fix nav.adoc order for ful…
kemister85 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.