Skip to content

Commit 9f92fcd

Browse files
committed
fixed line comments
1 parent 7db42d3 commit 9f92fcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content_management/rich_text/extend_online_editor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,11 +468,11 @@ ibexa.addConfig('richText.CKEditor.extraConfig', { specialCharacters: { order: [
468468
You can also use custom functions to modify the plugin configuration. The following example adds two ways to add a non-breaking space character:
469469
```js
470470
function SpecialCharactersNbsp( editor ) {
471-
# add non-breaking space to the SpecialCharacters plugin
471+
// add non-breaking space to the SpecialCharacters plugin
472472
editor.plugins.get( 'SpecialCharacters' ).addItems( 'Text', [
473473
{ title: 'Non-Breaking Space', character: '\u00a0' }
474474
] );
475-
# add a keyboard shortcut
475+
// add a keyboard shortcut
476476
editor.keystrokes.set( 'Ctrl+space', ( key, stop ) => {
477477
editor.execute( 'input', { text: '\u00a0' } );
478478
stop();

0 commit comments

Comments
 (0)