I will use the ckeditor v5 into my project. I´ve trying to use the image plugin, but I don´t find enough informations about it. If you see the Demoe here, you easily upload images with Drag&Drop. But when I will try it with the download ball...
I want to be able to switch from WYSIWYG to plain HTML to e.g. insert IFrame with a Youtube video. So far with the standard CKEditor 5 builds there is no documentation on how to do that. Is there an equivalent of the Source Editing Area plugin but...
I tried to integrate ckeditor5 into my angular project but got ckeditor-duplicated-modules. I tried many ways Add ckeditor classic build only, it works fine Add ckeditor classic build and Base64ImageUpload plugin, it does not work Extend my Classic...
I am creating a lesson editor. The user can edit the content (text, videos, links, images etc) or view the final result (the rendered html). The editor works fine, but when I show the rendered html the linked youtube videos are not visible. This is...
How do I get the output from ckeditor as XML instead of HTML? I thought I could just use editor.data.processor=new XmlDataProcessor(); but that only seems to work for input where the editor now requires XML when calling editor.setData() but editor....
I try to set CKEditor 5 to more than one <textarea>, but only the first one works. Here is the code: <script src="https://cdn.ckeditor.com/ckeditor5/1.0.0-alpha.2/classic/ckeditor.js"></script> <textarea name="conte...
I am trying to process an insert event from the CKEditor 5. editor.document.on("change", (eventInfo, type, data) => { switch (type) { case "insert": console.log(type, data); break; } }); When typing in the editor...
Problem statement: I recently updated from CKEditor 4 to CKEditor 5 and facing an issue with rendering Html page. I found that when I provide HTML content to CKEditor 5, it removes all the styling and render as plain HTML. I went through some diffe...
I'm trying to create a button in my CkEditor where the user clicks on it and a method from my Vue component is called, but I don't find in the documentation how to do it... Also, my build is not emitting events... Any idea why? <template...
I've managed to customize the header and highlight dropdowns for CKEditor 5 – classic editor build by creating a new custom build. But I don't know how to add additional buttons to the toolbar. For example a fullscreen button. Current progr...
©2020 All rights reserved.