Content of the editor.
Content of the editor.
import ClassicEditor from "@ckeditor/ckeditor5-build-classic";
$(".editor").each(function() {
const el = this;
ClassicEditor.create(el).catch((error) => {
console.error(error);
});
});