Skip to content

Commit c62164b

Browse files
authored
IBX-10261: Enabled special characters plugin in CKE (#246)
1 parent 814eb43 commit c62164b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/bundle/Resources/config/prepend/ezpublish.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ system:
6363
priority: 20
6464
ibexaCustomAttributes:
6565
priority: 10
66+
specialCharacters:
67+
priority: 5
6668
group5:
6769
priority: 20
6870
buttons:

src/bundle/Resources/public/js/CKEditor/core/base-ckeditor.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ import Subscript from '@ckeditor/ckeditor5-basic-styles/src/subscript';
2828
import Superscript from '@ckeditor/ckeditor5-basic-styles/src/superscript';
2929
import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
3030
import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
31+
import SpecialCharacters from '@ckeditor/ckeditor5-special-characters/src/specialcharacters';
32+
import SpecialCharactersEssentials from '@ckeditor/ckeditor5-special-characters/src/specialcharactersessentials';
3133
import ContextualBalloon from '@ckeditor/ckeditor5-ui/src/panel/balloon/contextualballoon';
3234

3335
const VIEWPORT_TOP_OFFSET = 102;
@@ -171,6 +173,8 @@ const VIEWPORT_TOP_OFFSET_DISTRACTION_FREE_MODE = 0;
171173
Superscript,
172174
Strikethrough,
173175
BlockQuote,
176+
SpecialCharacters,
177+
SpecialCharactersEssentials,
174178
ContextualBalloon,
175179
IbexaCharacterCounter,
176180
IbexaElementsPath,

0 commit comments

Comments
 (0)