Estoy usando CKeditor para un editor de texto y no eliminará los espacios en blanco adicionales.
aquí está mi código
var ready = (callback) => { if (document.readyState != "loading") callback(); else document.addEventListener("DOMContentLoaded", callback); } ready(() => { ClassicEditor.create(document.querySelector(".wysiwyg"), { toolbar: { items: [ "heading", "|", "bold", "italic", "link", "bulletedList", "numberedList", "|", "indent", "outdent", "|", "imageUpload", "blockQuote", "mediaEmbed", "undo", "redo", ], }, language: "es", image: { toolbar: ["imageTextAlternative", "imageStyle:full", "imageStyle:side"], }, licenseKey: "", }) .then((editor) => { window.editor = editor; editor.ui.view.editable.element.style.height = '300px'; }) .catch((error) => { console.error(error); }); });No conozco ninguna otra forma de eliminar espacios en blanco de aquí. ¿Algunas ideas?
Gracias