From 60a9b9ffe2e98b4e05750e4e6d2d212e57c8659a Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Mon, 13 Apr 2026 12:16:06 +1000 Subject: [PATCH] DOC-3393: Add plugins and toolbar multi-plugin example to quickstart Add "Configure plugins and toolbar" section with plugins: 'image code' and toolbar example to the quickstart partial to address Context7 benchmark Q2 (56/100). --- .../partials/install/basic-quickstart-base.adoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/ROOT/partials/install/basic-quickstart-base.adoc b/modules/ROOT/partials/install/basic-quickstart-base.adoc index 8d47b0aca3..407c31705f 100644 --- a/modules/ROOT/partials/install/basic-quickstart-base.adoc +++ b/modules/ROOT/partials/install/basic-quickstart-base.adoc @@ -183,6 +183,21 @@ Adding this content to an HTML file and opening it in a web browser will load a liveDemo::default[] +== Configure plugins and toolbar + +To enable specific plugins and customize the toolbar, use the `+plugins+` and `+toolbar+` options. For example, to add the `+image+` and `+code+` plugins with their toolbar buttons: + +[source,js] +---- +tinymce.init({ + selector: '#mytextarea', + plugins: 'image code', + toolbar: 'undo redo | image code' +}); +---- + +Plugin names are space-separated. Toolbar items can include plugin-provided buttons (such as `+image+` and `+code+`) and separators (`+|+`). For a full list of available plugins, see xref:plugins.adoc[Plugins]. + ifeval::["{productSource}" == "cloud"] == Add your API key