Bundle Size
~115 KB
Try editing below - all plugins are native TypeScript/JavaScript with zero React dependency!
This editor is built with 100% native plugins - no React, no Vue, no framework dependencies!
Try using the toolbar above - every single feature works without any framework!
This is a pure web component that works in HTML, React, Vue, Angular, Svelte, or any JavaScript environment.
<!-- Just include the script (Full bundle for all plugins) -->
<script src="packages/core/dist/webcomponent.min.js"></script>
<!-- Use the custom element -->
<editora-editor
height="400"
plugins="bold italic underline link table"
toolbar-items="bold italic underline | link table"
>
<p>Your content here</p>
</editora-editor>
// React treats it as a native HTML element
function App() {
return (
<editora-editor
height={"400"}
plugins={"bold italic underline"}
toolbar-items={"bold italic underline"}
>
<p>Content</p>
</rich-text-editor>
);
}
<template>
<editora-editor
height="400"
plugins="bold italic underline"
toolbar-items="bold italic underline"
>
<p>Content</p>
</editora-editor>
</template>
<script src="https://unpkg.com/@editora/core@latest/dist/webcomponent.min.js"></script>
<editora-editor height="400"></editora-editor>