⚠️ Oops! This page doesn't appear to define a type called _.
Edit

Omd_html

This module does not have a toplevel documentation block.

type html = list(html_node)

type html_node = | Node(nodename, attributes, html) | Data(string) | Rawdata(string) | Comment(string)

type nodename = string

type attributes = list(attribute)

type attribute = (string, option(string))

let to_string: list(html_node) => string