The HtmlParser class is responsible for parsing HTML content and converting it into a series of HTML elements with styles.

HtmlParser 类负责解析 HTML 内容,将其转换为一系列具有样式的 HTML 元素。

属性

classMap: Record<number, new () => IHtmlObject> = ...

A mapping of HTML element types to their corresponding classes.

将 HTML 元素类型映射到它们对应的类。

defaultParser: HtmlParser = ...

The default instance of the HtmlParser class.

HtmlParser 类的默认实例。

方法

  • 参数

    • aSource: string

      The HTML source to parse.

    • style: TextStyle

      The default text style to apply.

    • out: HtmlElement[]

      The array to populate with parsed HTML elements.

    • 可选options: HtmlParseOptions

      The options for parsing the HTML.

    返回 void

    Parses the given HTML source and populates the output array with HTML elements.

    解析给定的 HTML 源代码,并将输出数组填充为 HTML 元素。