fromHtml static method

  1. @experimental
Document fromHtml(
  1. String html
)

Convert the HTML Raw string to Document

Implementation

@experimental
static Document fromHtml(String html) {
  return Document.fromDelta(DeltaX.fromHtml(html));
}