Skip to main content

Setting content

DHTMLX Richtext editor allows loading content in the HTML and Markdown formats. Thus, besides entering text right into the editor, you can load ready content in the supported format and edit it with the help of the RichText set of controls.

Format of content

HTML format

Rich Text supports standard HTML format, so you can use all habitual formatting tags. The image below presents the result of parsing a text in the HTML format into the Rich Text editor:

HTML format

Markdown format

For parsing of a Markdown-formatted text, DHTMLX Richtext uses the Marked.js markdown parser. For now the component supports basic formatting elements of the Markdown syntax. Check the cheat sheet below:

Markdown cheat sheet

The following image demonstrates the result of parsing a text in the Markdown format into the Rich Text editor:

Markdown format

Adding content into editor

In order to add some text content into the RichText, make use of the setValue() method. The method takes two parameters:

  • value - (string) a string with the content you want to add into the editor in either HTML or Markdown format
  • mode - (string) optional, the format of text parsing: "html" (default) or "markdown"

Below you can find examples of loading text in both available formats:

  • adding HTML content
var htmlText = `<h1>Meet DHTMLX Rich Text Editor!</h1>` +
`<p>This demo will show you a customizable JavaScript rich text editor.</p>` +
`<p><i>Read more in</i><a href="https://docs.dhtmlx.com"><i>documentation</i></a></p>.`

richtext.setValue(htmlText);

Related sample: Setting HTML content

  • adding Markdown content
note

Note, that for a text in the Markdown format you need to define paragraphs by empty lines.

var mdText = `# Meet DHTMLX Rich Text Editor!

This demo will show you a customizable **JavaScript rich text editor**.

*To learn more, read [documentation](https://docs.dhtmlx.com/richtext/)*.`

richtext.setValue(mdText,"markdown");

Related sample: Setting Markdown Value