| 1 | | Further information: |
| 2 | | It works when   is used instead of |
| 3 | | |
| 4 | | Summary: |
| 5 | | {{{ |
| 6 | | #!js |
| 7 | | config.specialChars = config.specialChars.concat([ |
| 8 | | [' ', 'Non-breakable space'] |
| 9 | | ]); |
| 10 | | }}} |
| 11 | | doesn't work. CKEditor adds a normal space instead of the expected |
| 12 | | |
| 13 | | {{{ |
| 14 | | #!js |
| 15 | | config.specialChars = config.specialChars.concat([ |
| 16 | | [' ', 'Non-breakable space'] |
| 17 | | ]); |
| 18 | | }}} |
| 19 | | works. CKEditor adds a non-breakable space as expected. Actually it adds instead of   |
| | 1 | More information: |
| | 2 | It works only when trying to insert a non-breakable space after a space. |