Editor Configuration
Example Integration Code
<!-- Include this div and give it a unique ID -->
<div id="myEditor"></div>
<!-- Include the editor files -->
<script src="https://cliveflex.app/js/editor-themes.js"></script>
<script src="https://cliveflex.app/js/editor.js"></script>
<!-- Initialize the editor -->
<script>
const editor = new RichTextEditor('myEditor', '<your-api-key>', {
theme: 'light'
});
</script>