🚀 RichTextEditor - Bundled Version

Select Profile

Usage

The bundled version includes all plugins and loads with just 2 files!
// HTML <link rel="stylesheet" href="/dist/richtext-editor.min.css"> <script src="/dist/richtext-editor.min.js"></script> // Create with profile name const editor = RichTextEditor.create('#editor', 'full'); // Or with custom options const editor = RichTextEditor.create('#editor', { profile: 'basic', placeholder: 'Type here...', minHeight: 400 }); // API editor.getContent(); // Get HTML editor.setContent(html); // Set HTML editor.clear(); // Clear content

Available Profiles

Profile Description
minimal Text formatting only
comment Short comments (links, emoji)
basic General content editing
email Email composition with autosave
full All features enabled