React HtmlEditor - converter

Allows you to convert an HTML Editor value between different markups.

Selector: Converter
Type:

Converter

| undefined
Default Value: undefined

App.js
  • import React from 'react';
  • import HtmlEditor, { Converter } from 'devextreme-react/html-editor';
  •  
  • const toHtml: (value) => {
  • const result = */ Convert the value and return a string */
  • return result;
  • }
  •  
  • const fromHtml: (value) => {
  • const result = /* Convert the value and return a string */
  • return result;
  • }
  •  
  • function App() {
  • return (
  • <HtmlEditor ...>
  • <Converter
  • fromHtml={fromHtml}
  • toHtml={toHtml}
  • />
  • </HtmlEditor>
  • );
  • }
  •  
  • export default App;

View Demo

fromHtml

A function that converts an HTML Editor value from HTML to another markup language.

Type:

Function

Function parameters:
value:

String

The HTML Editor value.

Return Value:

String

The converted value.

toHtml

A function that converts an HTML Editor value from a markup language to HTML.

Type:

Function

Function parameters:
value:

String

The HTML Editor value.

Return Value:

String

The converted value.