23 lines
826 B
YAML
23 lines
826 B
YAML
# Register custom plugins for ckeditor
|
|
editor:
|
|
config:
|
|
# Explicitly remove (default or external) plugins
|
|
# removeImportModules: []
|
|
|
|
# load modules for plugins when CKEditor is initialized
|
|
# see CKEditor plugin API for details
|
|
importModules:
|
|
# Plugin for whitespace control like soft hypens and non breaking spaces
|
|
- { module: '@typo3/rte-ckeditor/plugin/whitespace.js', exports: [ 'Whitespace' ] }
|
|
- { module: '@typo3/rte-ckeditor/plugin/typo3-link.js', exports: [ 'Typo3Link' ] }
|
|
|
|
# Configure global wordCount plugin defaults
|
|
# Overwrite them in your RTE presets as it is necessary
|
|
# wordCount:
|
|
# displayWords: true
|
|
# displayCharacters: true
|
|
|
|
# configuration for external plugins
|
|
externalPlugins:
|
|
typo3link: { route: 'rteckeditor_wizard_browse_links' }
|