Module Odoc_html.Types

type uri =
  1. | Absolute of string
  2. | Relative of Odoc_document.Url.Path.t option
type file_uri =
  1. | Absolute of string
  2. | Relative of Odoc_document.Url.Path.t
type toc = {
  1. title : Html_types.flow5_without_interactive Tyxml.Html.elt list;
  2. title_str : string;
  3. href : string;
  4. children : toc list;
}
type breadcrumb = {
  1. href : string option;
  2. name : Html_types.phrasing_without_interactive Tyxml.Html.elt list;
  3. kind : Odoc_document.Url.Path.kind;
}
type breadcrumbs = {
  1. parents : breadcrumb list;
  2. current : breadcrumb;
  3. up_url : string option;
}