You can search for identifiers within the package.
in-package search v0.2.0
type html = html_node list
and html_node =
| Node of nodename * attributes * html
| Data of string
| Rawdata of string
| Comment of string
and nodename = string
and attributes = attribute list
and attribute = string * string option
val to_string : html_node list -> string