Skip to content

Commit

Permalink
Merge stable into master
Browse files Browse the repository at this point in the history
  • Loading branch information
CKTravisBot authored Aug 24, 2023
2 parents 787719c + 0a3655b commit a938d65
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/installation/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ The fastest way to run an advanced editor using the {@link features/index rich e

In the superbuild, all editor classes are stored under the `CKEDITOR` object. Apart from that exception, the editor initialization is no different than the one described in the {@link installation/getting-started/predefined-builds#available-builds available builds documentation}.

Because the superbuild contains a lot of plugins, you may need to remove the plugins you do not need with the <code>removePlugins</code> configuration option and adjust the toolbar configuration.
Because the superbuild contains a lot of plugins, you may need to remove the plugins you do not need with the <code>removePlugins</code> configuration option and adjust the toolbar configuration. There are also some plugins, like the {@link features/productivity-pack Productivity Pack}, that require a license to run. Observe the config below to see this implemented.

### Sample implementation

In this example, we remove the premium collaboration features as well as several other plugins that require credentials to work. We need to do this, otherwise the editor would throw an error.
In this example, we remove the premium collaboration features as well as several other plugins that require credentials to work. We need to do this, otherwise, the editor will throw an error.


```html
Expand Down Expand Up @@ -286,7 +286,8 @@ In this example, we remove the premium collaboration features as well as several
'Template',
'DocumentOutline',
'FormatPainter',
'TableOfContents'
'TableOfContents',
'PasteFromOfficeEnhanced'
]
});
</script>
Expand Down

0 comments on commit a938d65

Please sign in to comment.