toHtml method

String toHtml()

Implementation

String toHtml() {
  String html = startHtmlTag;

  if (content != null) html += content!;

  for (NodeV3 child in children) {
    html += child.toHtml();
  }

  return html + endHtmlTag;
}