diff options
Diffstat (limited to 'resources/views/modules/ckeditor/ckeditor-js.phtml')
| -rw-r--r-- | resources/views/modules/ckeditor/ckeditor-js.phtml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/views/modules/ckeditor/ckeditor-js.phtml b/resources/views/modules/ckeditor/ckeditor-js.phtml index d443da103f..8dcc31172b 100644 --- a/resources/views/modules/ckeditor/ckeditor-js.phtml +++ b/resources/views/modules/ckeditor/ckeditor-js.phtml @@ -11,6 +11,9 @@ CKEDITOR.config.removePlugins = "forms,newpage,preview,print,save,templates,flash,iframe"; CKEDITOR.config.extraAllowedContent = "area[shape,coords,href,target,alt,title];map[name];img[usemap];*[class,style]"; + // Do not convert é to é in the editor + CKEDITOR.config.entities = false; + // Activate the editor document.querySelectorAll("textarea.html-edit").forEach((node) => { CKEDITOR.replace(node.id); |
