Skip to main content

HTMLSourceInline

export
interface HTMLSourceInline {
  baseUrl?: string;
  html: string;
}

A source which content is provided in-place.

Fields#

baseUrl#

optional
baseUrl?: string;

The base URL to resolve relative URLs in the HTML code. See ​useNormalizedUrl.

html#

required
html: string;

A static HTML page to display in the HTML component.