Syncfusion.Blazor.RichTextEditor
33.1.49
Prefix Reserved
dotnet add package Syncfusion.Blazor.RichTextEditor --version 33.1.49
NuGet\Install-Package Syncfusion.Blazor.RichTextEditor -Version 33.1.49
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="33.1.49" />
<PackageVersion Include="Syncfusion.Blazor.RichTextEditor" Version="33.1.49" />
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" />
paket add Syncfusion.Blazor.RichTextEditor --version 33.1.49
#r "nuget: Syncfusion.Blazor.RichTextEditor, 33.1.49"
#:package Syncfusion.Blazor.RichTextEditor@33.1.49
#addin nuget:?package=Syncfusion.Blazor.RichTextEditor&version=33.1.49
#tool nuget:?package=Syncfusion.Blazor.RichTextEditor&version=33.1.49
Syncfusion® Blazor Rich Text Editor
Feature-rich WYSIWYG HTML and Markdown editor for creating and formatting rich content in Blazor applications.

Overview
The Blazor Rich Text Editor is a powerful WYSIWYG editor for creating blogs, forum posts, notes, comments, messaging applications, and support tickets. It provides comprehensive formatting tools, supports both HTML and Markdown modes, and returns valid markup for seamless content integration.
Key features
- Dual editing modes - HTML and Markdown (MD) editing with mode switching
- Rich formatting tools - Text formatting, fonts, colors, alignment, and styles
- Insert capabilities - Images, links, tables, lists, code blocks, and media
- Toolbar customization - Configurable toolbar with custom tools and commands
- Table support - Create and edit tables with cell merging and formatting
- Image management - Upload, resize, and position images with drag-and-drop
- Link insertion - Insert hyperlinks and email links with validation
- Paste cleanup - Smart paste from Word and other sources with formatting cleanup
- Undo/Redo - Full undo and redo support with history management
- Full-screen mode - Distraction-free editing experience
- Character and word count - Track content length in real-time
- Import/Export - Import Word documents and export content
- Responsive design - Touch-friendly interface for mobile devices
- Inline and iframe modes - Flexible rendering options
- Custom formatting - Apply custom CSS classes and inline styles
- Accessibility - WCAG 2.2 compliant with keyboard shortcuts and screen reader support
- RTL support - Right-to-left language compatibility
- Themes - Multiple built-in themes and custom styling
Add stylesheet and script references
- For Blazor Server App / Blazor Web App, add these to
Components/App.razororApp.razorfile. - For Blazor WebAssembly App, add these to
wwwroot/index.htmlfile.
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
Quick start
- Register the Syncfusion® Blazor services in the
Program.csfile.
using Syncfusion.Blazor;
builder.Services.AddSyncfusionBlazor();
- Add Blazor Rich Text Editor Component to your Razor page.
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor Placeholder="Start Typing...">
<RichTextEditorToolbarSettings Items="@tools" />
</SfRichTextEditor>
@code {
private List<ToolbarItemModel> tools = new List<ToolbarItemModel>()
{
new ToolbarItemModel() { Command = ToolbarCommand.Bold },
new ToolbarItemModel() { Command = ToolbarCommand.Italic },
new ToolbarItemModel() { Command = ToolbarCommand.Underline },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.Formats },
new ToolbarItemModel() { Command = ToolbarCommand.Alignments },
new ToolbarItemModel() { Command = ToolbarCommand.OrderedList },
new ToolbarItemModel() { Command = ToolbarCommand.UnorderedList },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.CreateLink },
new ToolbarItemModel() { Command = ToolbarCommand.Image },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.Undo },
new ToolbarItemModel() { Command = ToolbarCommand.Redo }
};
}
- Custom Toolbar Configuration
Configure toolbar with specific tools:
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor @bind-Value="@content">
<RichTextEditorToolbarSettings Items="@tools" />
</SfRichTextEditor>
@code {
private string content = "<p>Start typing...</p>";
private List<ToolbarItemModel> tools = new List<ToolbarItemModel>()
{
new ToolbarItemModel() { Command = ToolbarCommand.Bold },
new ToolbarItemModel() { Command = ToolbarCommand.Italic },
new ToolbarItemModel() { Command = ToolbarCommand.Underline },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.Formats },
new ToolbarItemModel() { Command = ToolbarCommand.Alignments },
new ToolbarItemModel() { Command = ToolbarCommand.OrderedList },
new ToolbarItemModel() { Command = ToolbarCommand.UnorderedList },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.CreateLink },
new ToolbarItemModel() { Command = ToolbarCommand.Image },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.Undo },
new ToolbarItemModel() { Command = ToolbarCommand.Redo }
};
}
- Markdown Mode
Enable Markdown editing:
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor EditorMode="EditorMode.Markdown" @bind-Value="@markdownContent">
<RichTextEditorToolbarSettings Items="@markdownTools" />
</SfRichTextEditor>
@code {
private string markdownContent = "# Hello Markdown\n\nThis is **bold** and this is *italic*.";
private List<ToolbarItemModel> markdownTools = new List<ToolbarItemModel>()
{
new ToolbarItemModel() { Command = ToolbarCommand.Bold },
new ToolbarItemModel() { Command = ToolbarCommand.Italic },
new ToolbarItemModel() { Command = ToolbarCommand.StrikeThrough },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.Formats },
new ToolbarItemModel() { Command = ToolbarCommand.OrderedList },
new ToolbarItemModel() { Command = ToolbarCommand.UnorderedList },
new ToolbarItemModel() { Command = ToolbarCommand.Separator },
new ToolbarItemModel() { Command = ToolbarCommand.CreateLink },
new ToolbarItemModel() { Command = ToolbarCommand.Image }
};
}
Documentation
- Getting Started with Blazor Web App
- Getting Started with Blazor WebAssembly App
- Feature Overview
- API Reference
- Live Demos
- Video Tutorials
Support
- Contact Support - Submit a support ticket
- Community Forums - Blazor Forums
- Feature Requests - Feedback Portal
License
This is a commercial product and requires a paid license for use.
About Syncfusion®
Syncfusion® is a provider of enterprise software components and frameworks. We offer 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Flutter and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI, and Flutter).
sales@syncfusion.com | www.syncfusion.com | 1-888-9-DOTNET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Syncfusion.Blazor.Buttons (>= 33.1.49)
- Syncfusion.Blazor.Core (>= 33.1.49)
- Syncfusion.Blazor.Inputs (>= 33.1.49)
- Syncfusion.Blazor.Navigations (>= 33.1.49)
- Syncfusion.Blazor.Popups (>= 33.1.49)
- Syncfusion.Blazor.SplitButtons (>= 33.1.49)
-
net8.0
- Syncfusion.Blazor.Buttons (>= 33.1.49)
- Syncfusion.Blazor.Core (>= 33.1.49)
- Syncfusion.Blazor.Inputs (>= 33.1.49)
- Syncfusion.Blazor.Navigations (>= 33.1.49)
- Syncfusion.Blazor.Popups (>= 33.1.49)
- Syncfusion.Blazor.SplitButtons (>= 33.1.49)
-
net9.0
- Syncfusion.Blazor.Buttons (>= 33.1.49)
- Syncfusion.Blazor.Core (>= 33.1.49)
- Syncfusion.Blazor.Inputs (>= 33.1.49)
- Syncfusion.Blazor.Navigations (>= 33.1.49)
- Syncfusion.Blazor.Popups (>= 33.1.49)
- Syncfusion.Blazor.SplitButtons (>= 33.1.49)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on Syncfusion.Blazor.RichTextEditor:
| Package | Downloads |
|---|---|
|
Syncfusion.Blazor.InPlaceEditor
Provides a Syncfusion® Blazor In-Place Editor component for inline and popup editing scenarios. Supports multiple input types including TextBox, Dropdown, DatePicker, and Rich Text Editor. Optimized for seamless integration in both Blazor Server and Blazor WebAssembly applications. |
|
|
Syncfusion.Blazor.Gantt
This package contains the Syncfusion® Blazor Gantt component. |
|
|
CyberFrameword10_V2
CyberFrameword10_V2 |
|
|
Recrovit.RecroGridFramework.Client.Blazor.SyncfusionUI
RecroGrid Framework Blazor UI. |
|
|
IdentitySuite
A ready-to-use OpenId Connect Server based on Openiddict with Microsoft Identity and a comprehensive management shell. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 33.1.49 | 1,667 | 4/13/2026 |
| 33.1.47 | 1,974 | 4/6/2026 |
| 33.1.46 | 1,896 | 3/30/2026 |
| 33.1.45 | 2,948 | 3/23/2026 |
| 33.1.44 | 5,878 | 3/16/2026 |
| 32.2.9 | 3,838 | 3/9/2026 |
| 32.2.8 | 4,161 | 3/2/2026 |
| 32.2.7 | 4,416 | 2/23/2026 |
| 32.2.5 | 3,208 | 2/16/2026 |
| 32.2.4 | 3,066 | 2/10/2026 |
| 32.2.3 | 5,609 | 2/5/2026 |
| 32.1.25 | 5,243 | 1/26/2026 |
| 32.1.24 | 4,567 | 1/19/2026 |
| 32.1.23 | 6,486 | 1/13/2026 |
| 32.1.22 | 4,294 | 1/5/2026 |
| 32.1.21 | 5,236 | 12/29/2025 |
| 32.1.20 | 2,682 | 12/23/2025 |
| 32.1.19 | 8,648 | 12/16/2025 |
| 31.2.18 | 3,395 | 12/8/2025 |
| 31.2.16 | 10,076 | 12/1/2025 |