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;
  2. name : string;
  3. kind : Odoc_document.Url.Path.kind;
}