Skip to content
Open
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
15 changes: 15 additions & 0 deletions modules/ROOT/partials/install/basic-quickstart-base.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading