Skip to content

Commit ebfc5cf

Browse files
committed
DOC-3202: fix nesting and syntax issues.
1 parent f76d032 commit ebfc5cf

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

modules/ROOT/pages/migration-from-4x.adoc

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ The {productname} plugin ecosystem was significantly restructured in version 6.0
4545
** `paste`, `hr`, `noneditable`, `table`, `print`, and `contextmenu`: These plugins were absorbed into the {productname} core and no longer require separate installation.
4646

4747
* **Now Premium Only**:
48-
4948
** `spellchecker`, `editimage`, `mediaembed`, `tableofcontents`: These features are available through premium plugins.
5049

5150
.Plugin Migration Examples
@@ -67,6 +66,7 @@ The {productname} plugin ecosystem was significantly restructured in version 6.0
6766
If you used the following toolbar buttons or menu options, they have changed names across major {productname} versions. Please refer to the release notes for each version for complete migration details.
6867
6968
{productname} 5 → {productname} 6:
69+
7070
* `formatselect` → `blocks` (toolbar item)
7171
* `blockformats` → `blocks` (menu item)
7272
* `styleselect` → `styles` (toolbar item)
@@ -80,21 +80,22 @@ If you used the following toolbar buttons or menu options, they have changed nam
8080
* `tocupdate` → `tableofcontentsupdate` (toolbar item)
8181
8282
{productname} 6 → {productname} 7:
83+
8384
* `InsertOrderedList` and `InsertUnorderedList` commands were removed from the core and are now provided by the `lists` plugin.
8485
* Default text pattern triggers were updated to activate on `Space` instead of `Enter`. A `trigger` property was added to configure block-level text pattern behavior.
8586
86-
Refer to the latest release notes at https://www.tiny.cloud/docs/tinymce/latest/release-notes/ for further details.
87+
Refer to the latest release notes at link:https://www.tiny.cloud/docs/tinymce/latest/release-notes/[latest release notes] for further details.
8788
====
8889

89-
TIP: Always refer to the latest plugin documentation at link:https://www.tiny.cloud/docs/plugins/ for up-to-date availability and migration guidance.
90+
TIP: Always refer to the latest plugin documentation at xref:plugins.adoc[plugins] for up-to-date availability and migration guidance.
9091

91-
.Example:
92+
.Example of Toolbar Changes:
9293
[source,js]
9394
----
9495
tinymce.init({
95-
selector: "textarea",
96-
toolbar: "undo redo | forecolor backcolor | bold italic | alignleft aligncenter alignright alignjustify",
97-
plugins: ["lists link image table code"],
96+
selector: "textarea",
97+
toolbar: "undo redo | forecolor backcolor | bold italic | alignleft aligncenter alignright alignjustify",
98+
plugins: ["lists link image table code"]
9899
});
99100
----
100101

@@ -130,7 +131,8 @@ tinymce.init({
130131
selector: "textarea",
131132
toolbar: "undo redo | blocks | bold italic | alignleft aligncenter alignright alignjustify | outdent indent | removeformat",
132133
toolbar_mode: "floating",
133-
license_key: "gpl", // Required in TinyMCE 7.0 if self-hosting
134+
// Required in TinyMCE 7.0 if self-hosting
135+
license_key: "gpl",
134136
// Security options now enabled by default in TinyMCE 7.0
135137
sandbox_iframes: true,
136138
convert_unsafe_embeds: true,

modules/ROOT/pages/migration-from-5x.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ content_css: "dark",
2828

2929
=== Plugin Ecosystem
3030

31-
=== Plugin Ecosystem
32-
3331
The {productname} plugin ecosystem underwent a significant overhaul starting in version 6.0, with many plugins either removed, integrated into the core, or made premium-only. The following summarizes these changes.
3432

35-
* **Removed Plugins**:
33+
* **Removed Plugins** (no longer available as of {productname} 6.0):
3634
** `colorpicker`: Deprecated in 5.0; functionality absorbed into core. Removed in 6.0.
3735
** `contextmenu`: Deprecated in version 5.0 following the integration of context menu functionality into the core editor. Removed in version 6.0. For more information, see the link:https://www.tiny.cloud/docs/tinymce/latest/contextmenu/[contextmenu documentation].
3836
** `tabfocus`: Removed in 6.0. Keyboard navigation via Tab is now handled by the browser and editor core.
@@ -70,6 +68,7 @@ The {productname} plugin ecosystem underwent a significant overhaul starting in
7068
If you used the following toolbar buttons or menu options, they have changed names across major {productname} versions. Please refer to the release notes for each version for complete migration details.
7169
7270
{productname} 5 → {productname} 6:
71+
7372
* `formatselect` → `blocks` (toolbar item)
7473
* `blockformats` → `blocks` (menu item)
7574
* `styleselect` → `styles` (toolbar item)
@@ -83,15 +82,16 @@ If you used the following toolbar buttons or menu options, they have changed nam
8382
* `tocupdate` → `tableofcontentsupdate` (toolbar item)
8483
8584
{productname} 6 → {productname} 7:
85+
8686
* `InsertOrderedList` and `InsertUnorderedList` commands were removed from the core and are now provided by the `lists` plugin.
8787
* Default text pattern triggers were updated to activate on `Space` instead of `Enter`. A `trigger` property was added to configure block-level text pattern behavior.
8888
89-
Refer to the latest release notes at https://www.tiny.cloud/docs/tinymce/latest/release-notes/ for further details.
89+
Refer to the latest release notes at link:https://www.tiny.cloud/docs/tinymce/latest/release-notes/[latest release notes] for further details.
9090
====
9191

92-
TIP: Always refer to the latest plugin documentation at link:https://www.tiny.cloud/docs/plugins/ for up-to-date availability and migration guidance.
92+
TIP: Always refer to the latest plugin documentation at xref:plugins.adoc[plugins] for up-to-date availability and migration guidance.
9393

94-
.Example:
94+
.Example of Toolbar Changes:
9595
[source,js]
9696
----
9797
tinymce.init({

0 commit comments

Comments
 (0)