Modular Word editor

Select a plugin below to load its JavaScript independently.

<div id="editor"></div>
<link rel="stylesheet" href="../assets/editra/dist/editra-core.css">
<script src="../assets/editra/dist/editra-core.js"></script>
<script>
  (async function () {
    "use strict";
    const editor = await Editra.init({
      selector: "#editor",
      theme: "Word",
      plugins: ["formatting", "table", "image"]
    });
    globalThis.editraEditor = editor;
  })();
</script>