LOEditor is a streamlined, adaptable WYSIWYG HTML editor that delivers clean markup and a straightforward JavaScript API. Developed in vanilla JavaScript and jQuery, it bypasses the outdated document.execCommand() method and instead offers a contemporary, plugin-driven structure for effortless integration into web applications.
<script src="https://cdn.jsdelivr.net/gh/jquery/jquery@latest/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/LacasuriOrtodoxe/LOEditor@latest/loeditor.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/LacasuriOrtodoxe/LOEditor@latest/loeditor.min.css"/>
<textarea id="editor">Textarea sample</textarea>
<script>
$("#editor").LOEditor();
</script>