Edith, simple WYSIWYG editor.
To work this library needs :
- codemirror 6.x
- @codemirror/lang-html 6.x
- @popperjs/core 2.x
- @fortawesome/fontawesome-free 6.x
import { Edith } from "@lesjoursfr/edith";
/* Initialize the WYSIWYG Editor */
new Edith(document.querySelector("#editor"), {
height: 200,
toolbar: [
[
"style",
[
"bold",
"italic",
"underline",
"strikethrough",
"subscript",
"superscript",
"nbsp",
"clear",
],
],
/*** Other toolbar blocs ***/
],
buttons: {
/*** Extra buttons for the toolbar ***/
},
initialContent: "Optional initial content",
});