trotl-texteditor
v1.0.29
Published
Texteditor table UI
Readme
texteditor
A simple, flexible Text editor UI for React
DEMO: https://texteditor.linijart.eu/
🚀 Installation
npm install trotl-texteditor
# or
yarn add trotl-texteditorVersions
1.0.1 => initial release⚡ Quick Start
import Editor from "trotl-texteditor";
import "trotl-texteditor/dist/index.css";
export default function Demo() {
return (
<div>
<Editor
theme="light"
tools={["bold", "italic", "underline", "insertUnorderedList", "insertOrderedList"]}
showHeading={true}
showFontSize={true}
showLink={true}
showUndoRedo={true}
showClear={true}
showPlainPaste={true}
showStats={true}
showCopyHtml={true}
showColor={true}
onChange={(payload) => console.log("editor value", payload)}
showLiveHtml={true}
/>
</div>
);
}🛠 Features
📚 API Reference
🌟 Context Hooks
🎨 Styling
🏆 License
MIT — free to use, modify, and share.
