Wysiwyg editor.
https://luna.liriliri.io/?path=/story/editor
Add the following script and style to your page.
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/luna-editor/luna-editor.css" />
<script src="//cdn.jsdelivr.net/npm/luna-editor/luna-editor.js"></script>
You can also get it on npm.
npm install luna-editor --save
import 'luna-editor/luna-editor.css'
import LunaEditor from 'luna-editor'
const container = document.getElementById('container')
const editor = new LunaEditor(container)
console.log(editor.html())