Usage
The bundled version includes all plugins and loads with just 2 files!
<link rel="stylesheet" href="/dist/richtext-editor.min.css">
<script src="/dist/richtext-editor.min.js"></script>
const editor = RichTextEditor.create('#editor', 'full');
const editor = RichTextEditor.create('#editor', {
profile: 'basic',
placeholder: 'Type here...',
minHeight: 400
});
editor.getContent();
editor.setContent(html);
editor.clear();
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 |