Skip to content

Rich Text Editor

The Rich Text Editor feature lets editors add formatted text content to a page using Umbraco’s built-in rich text editor.

PropertyValue
Element type aliasfeatureRichTextEditor
Display nameRich Text Editor
Component compositionfeatureComponentRichTextEditor
Settings typefeatureSettings
Uses shared layoutYes (_Layout_Features.cshtml)
  • featureComponentFeatureTitle — heading
  • featureComponentFeatureDescription — lead text
  • featureComponentFeatureSummary — footer text
  • featureComponentRichTextEditor — rich text content

The view is minimal — it renders the rich text content and delegates the header/footer structure to the shared layout:

@inherits UmbracoViewPage<BlockGridItem<FeatureRichTextEditor>>
@{
Layout = "_Layout_Features.cshtml";
}
@Model.Content.RichTextContent

A Rich Text Editor block list view also exists at Views/Partials/blocklist/Components/featureRichTextEditor.cshtml for use inside other features that need rich text items.