Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
syncfusion avatar

Syncfusion React Rich Text Editor

  • 480 installs
  • 3 repo stars
  • Updated July 28, 2026
  • syncfusion/react-ui-components-skills

syncfusion-react-rich-text-editor is a Claude Code skill that helps developers integrate Syncfusion's React Rich Text Editor component into React applications needing WYSIWYG editing.

About

syncfusion-react-rich-text-editor is a Syncfusion agent skill from react-ui-components-skills for wiring Syncfusion's React Rich Text Editor into React apps. The skill targets developers adding formatted text editing, toolbar configuration, and editor lifecycle handling in SaaS dashboards, CMS admin panels, and internal tools. It fits when you need a production-grade RTE instead of building custom contenteditable logic from scratch. Source material is sparse in the catalog entry, so pair it with Syncfusion React documentation for API specifics, licensing, and bundle configuration.

  • syncfusion-react-rich-text-editor

Syncfusion React Rich Text Editor by the numbers

  • 480 all-time installs (skills.sh)
  • +56 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #862 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-rich-text-editor

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs480
repo stars3
Last updatedJuly 28, 2026
Repositorysyncfusion/react-ui-components-skills

How do you add a Syncfusion rich text editor in React?

Use syncfusion-react-rich-text-editor for development tasks

Who is it for?

React developers standardizing on Syncfusion UI who need guided RTE setup during feature work.

Skip if: Teams not using Syncfusion React or projects that only need a lightweight markdown textarea without a WYSIWYG dependency.

When should I use this skill?

User asks to add, configure, or debug Syncfusion React Rich Text Editor in a React codebase.

What you get

React components with configured Syncfusion Rich Text Editor instances, toolbar options, and content binding patterns.

  • Rich Text Editor component integration
  • Toolbar and binding configuration

Files

SKILL.mdMarkdownGitHub ↗

Syncfusion React Rich Text Editor

A WYSIWYG (What You See Is What You Get) editor for creating and formatting rich content as HTML or Markdown. Supports toolbars, media insertion, AI assistance, smart editing features, form validation, and deep customization.

When to Use This Skill

  • Setting up a rich text / WYSIWYG editor in a React app
  • Configuring toolbar items, types, or positions
  • Switching between HTML and Markdown editor modes
  • Inserting images, video, audio, or files
  • Working with smart editing features: emoji, slash menu, mentions, mail merge
  • Integrating AI assistant into the editor
  • Handling editor value: get, set, two-way binding, auto-save, import/export
  • Applying paste cleanup, form validation, or read-only mode
  • Customizing styles, accessibility, or keyboard shortcuts

Quick Start

npm install @syncfusion/ej2-react-richtexteditor
// src/App.css - add CSS imports
// @import '../node_modules/@syncfusion/ej2-base/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-buttons/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-inputs/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-lists/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-navigations/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-popups/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/tailwind3.css';
// @import '../node_modules/@syncfusion/ej2-richtexteditor/styles/tailwind3.css';

import {
  HtmlEditor, Image, Inject, Link,
  QuickToolbar, RichTextEditorComponent, Toolbar
} from '@syncfusion/ej2-react-richtexteditor';

function App() {
  return (
    <RichTextEditorComponent height={450}>
      <Inject services={[Toolbar, Image, Link, HtmlEditor, QuickToolbar]} />
    </RichTextEditorComponent>
  );
}
export default App;

Module Injection Reference

Inject only the modules your app needs — this keeps the bundle lean.

ModuleWhat it enables
ToolbarToolbar rendering and commands
HtmlEditorHTML editing mode (default)
MarkdownEditorMarkdown editing mode
LinkHyperlink insert/edit/remove
ImageImage insertion and management
VideoVideo insertion
AudioAudio insertion
TableHTML table insert/edit
QuickToolbarFloating toolbar for images/links
PasteCleanupClean up pasted content formatting
ClipboardCleanupClean clipboard on copy/cut
FileManagerFile browser for server-side images
ResizeResizable editor area
CountCharacter count display
EmojiPickerEmoji search and insert
SlashMenuSlash / command menu
ImportExportImport Word, export Word/PDF
CodeBlockInline code block formatting
AutoFormatAuto-convert Markdown syntax while typing
FormatPainterCopy-paste text formatting
AIAssistantAI assistant integration

Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation, npm setup, CSS imports
  • Basic component implementation
  • Module injection patterns
  • Toolbar configuration basics
  • Running the application

Editor Modes

📄 Read: references/editor-modes.md

  • HTML editor mode (default WYSIWYG)
  • Markdown editor mode with preview
  • IFrame vs DIV mode
  • Inline editing
  • Resizable editor

Toolbar Configuration

📄 Read: references/toolbar-configuration.md

  • Default toolbar items
  • Toolbar types: Expand, MultiRow, Scrollable
  • Toolbar position (top/bottom)
  • Sticky/floating toolbar
  • Quick toolbar for images and links

Toolbar Tools

📄 Read: references/toolbar-tools.md

  • Built-in tools reference (Bold, Italic, Formats, etc.)
  • Custom toolbar items with templates
  • Text formatting tools
  • Styling tools (font, color, alignment)
  • Fullscreen tool

Inserting Media

📄 Read: references/insert-media.md

  • Inserting images (URL, upload, base64)
  • Video insertion and configuration
  • Audio insertion
  • File browser integration

Inserting Content

📄 Read: references/insert-content.md

  • Tables: insert, resize, merge cells
  • Hyperlinks: create, edit, open in new tab
  • Code blocks
  • Custom format blocks

Smart Editing Features

📄 Read: references/smart-editing.md

  • Emoji picker
  • Slash menu (type / to open)
  • Mentions (tag users)
  • Mail merge

Managing Editor Value

📄 Read: references/editor-value.md

  • Setting initial value
  • Getting value via property, event, or method
  • Two-way binding with React state
  • Auto-save with saveInterval
  • Import/export Word and PDF
  • Markdown preview
  • Character count and maxLength
  • Source code view

Paste & Clipboard

📄 Read: references/paste-clipboard.md

  • Paste cleanup configuration
  • Clipboard cleanup on copy/cut
  • Executing editor commands programmatically

Validation & Security

📄 Read: references/validation-security.md

  • Form support and submission
  • XHTML validation
  • Read-only mode
  • XSS prevention

AI Assistant

📄 Read: references/ai-assistant.md

  • AI integration setup
  • AI assistant properties
  • Customizing AI toolbar and responses

Accessibility & Globalization

📄 Read: references/accessibility.md

  • WCAG 2.1 compliance
  • Keyboard shortcuts
  • Globalization, localization, RTL
  • Style encapsulation

Styling & Customization

📄 Read: references/styling-customization.md

  • CSS variable customization
  • Style encapsulation (shadow DOM)
  • Third-party integrations (CodeMirror, Mention library)
  • Spell/grammar check

Undo / Redo

📄 Read: references/undo-redo.md

  • Undo/redo manager behavior
  • Keyboard shortcuts
  • Programmatic undo/redo

Enter Key & Selection

📄 Read: references/enter-key-selection.md

  • Enter key configuration (P, BR, DIV)
  • Selection API
  • Cursor positioning

Events

📄 Read: references/events.md

  • Infer EventArgs Type value for each events
  • Lifecycle events: created, destroyed, focus, blur
  • Content change: change event with ChangeEventArgs
  • Action events: actionBegin (cancelable), actionComplete
  • Toolbar events: toolbarClick, updatedToolbarStatus
  • Dialog & popup events: beforeDialogOpen/Close, beforePopupOpen/Close
  • Media & file events: image/audio/video upload, select, remove, drop
  • Paste & clipboard events: beforePasteCleanup, afterPasteCleanup
  • AI Assistant events: aiAssistantPromptRequest, aiAssistantToolbarClick
  • Resize, slash menu, selection, quick toolbar, import/export events

Methods

📄 Read: references/methods.md

  • Focus & content: focusIn, focusOut, getHtml, getText, getSelectedHtml
  • Toolbar: enableToolbarItem, disableToolbarItem, removeToolbarItem
  • Dialog: showDialog, closeDialog with DialogType enum
  • Selection: selectAll, getRange, selectRange
  • Undo/redo: clearUndoRedo
  • AI Assistant: executeAIPrompt, addAIPromptResponse, getAIPromptHistory, clearAIPromptHistory
  • Utility: executeCommand (all CommandName values), sanitizeHtml, destroy

Properties Reference

📄 Read: references/properties.md

  • Core: height, width, enabled, readonly, placeholder, cssClass
  • Toolbar: toolbarSettings, quickToolbarSettings, floatingToolbarOffset
  • Editor mode & behavior: editorMode, iframeSettings, inlineMode, enterKey
  • Value & content: value, maxLength, showCharCount, saveInterval, enableHtmlSanitizer
  • Media: insertImageSettings, insertVideoSettings, insertAudioSettings, fileManagerSettings
  • Font, color & format: fontFamily, fontSize, fontColor, backgroundColor, format, codeBlockSettings
  • Paste: pasteCleanupSettings, enableClipboardCleanup
  • AI Assistant: aiAssistantSettings (full configuration reference)
  • Import/export: importWord, exportWord, exportPdf
  • Misc: undoRedoSteps, keyConfig, slashMenuSettings, emojiPickerSettings

How-To Guides

📄 Read: references/how-to.md

  • Capture Ctrl keys to update value
  • Change default font family
  • Check uploaded image size
  • Customize placeholder style
  • Customize shortcut keys
  • File attachment
  • Format code blocks
  • Position cursor at end of content
  • Rename images on server
  • RTE inside Dialog or Tab
  • Set cursor at specific range
  • Tailwind preflight fix
  • Update value programmatically

Common Patterns

Read value on change

import { ChangeEventArgs } from '@syncfusion/ej2-react-richtexteditor';

function App() {
  const onChange = (args: ChangeEventArgs) => {
    console.log(args.value); // HTML string
  };
  return (
    <RichTextEditorComponent change={onChange}>
      <Inject services={[Toolbar, HtmlEditor]} />
    </RichTextEditorComponent>
  );
}

Controlled value with React state

const [content, setContent] = useState('<p>Hello</p>');
<RichTextEditorComponent value={content} change={(e) => setContent(e.value)}>
  <Inject services={[Toolbar, HtmlEditor]} />
</RichTextEditorComponent>

Markdown mode

import { MarkdownEditor } from '@syncfusion/ej2-react-richtexteditor';
<RichTextEditorComponent editorMode="Markdown">
  <Inject services={[Toolbar, MarkdownEditor]} />
</RichTextEditorComponent>

Related skills

How it compares

Choose this skill when you are committed to Syncfusion React; prefer a generic React form skill if you only need plain text or markdown without a commercial RTE.

FAQ

What is syncfusion-react-rich-text-editor?

syncfusion-react-rich-text-editor is an agent skill from syncfusion/react-ui-components-skills that helps developers integrate Syncfusion's React Rich Text Editor. Use it when adding WYSIWYG editing to React dashboards, CMS screens, or admin forms.

When should I use this Syncfusion RTE skill?

Reach for syncfusion-react-rich-text-editor when building React apps that already use Syncfusion and need formatted text input with toolbars. Skip it if you want a minimal markdown field or are not on the Syncfusion React stack.

Backend & APIsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.