ObjectUIObjectUI

HTML

Render raw HTML content safely

Examples

Basic HTML

Format: markdownRich text editor (basic)
{
  "type": "html",
  "html": "<p>This is <strong>HTML</strong> content</p>"
}

Schema

interface HtmlSchema {
  type: 'html';
  html: string;
}

On this page