Module Odoc_html__Generator_signatures

module Html = Tyxml.Html
module Lang = Odoc_model.Lang
type rendered_item = Html_types.dt_content Html.elt list
type text = [ `A of Html_types.phrasing_without_interactive | `Code | `PCDATA | `Span ] Html.elt list
type ('item_kind, 'item) tagged_item = [
| `Leaf_item of 'item_kind * 'item
| `Nested_article of 'item
| `Comment of Odoc_model.Comment.docs_or_stop
]
type section = {
anchor : string;
text : Odoc_model.Comment.link_content;
children : section list;
}
type toc = section list
module type SYNTAX = sig ... end

HTML generation syntax customization module. See To_re_html_tree and To_ml_html_tree.

module type GENERATOR = sig ... end