Files
enlight-lms/lms/public/js/editor.js
2023-04-21 18:17:37 +05:30

16 lines
308 B
JavaScript

import EditorJS from "@editorjs/editorjs";
import Header from "@editorjs/header";
import List from "@editorjs/list";
const create_editor_for_short_description = () => {
let editor = new EditorJS({
holder: "course-description",
tools: {
header: {
class: Header,
},
list: List,
},
});
};