ObjectUIObjectUI

HTML

Render raw HTML content safely

Examples

Basic Html

This is HTML content

{
  "type": "html",
  "html": "<p>This is <strong>HTML</strong> content</p>"
}

Schema

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

On this page