Formation

18 Nov 20181 minute to read

The Rich Text Editor control used to create and edit the content and return valid HTML markup or markdown (MD) of the content. It supports the following two editing formation.

  • HTML Editor
  • Markdown Editor

HTML Editor

Rich Text Editor is a WYSIWYG editing control for formatting the word content as HTML.
The HTML editing mode is the default mode in Rich Text Editor to format the content through the available toolbar items to return the valid HTML markup. Set the EditorMode property as HTML.

Markdown Editor

Set the EditorMode property as Markdown, to create or edit the content and apply formatting to view markdown formatted content.

  • The Supported Tags are h6,h5,h4,h3,h2,h1,blockquote,pre,p,ol,ul.
  • The Supported Selection Tags are Bold, Italic, StrikeThrough, InlineCode, SubScript, SuperScript, UpperCase, LowerCase.
  • The supported insert commands are Image, Link and Table.

NOTE

The third-party library such as Marked or any other library is used to convert markdown into HTML content.

See Also