package odb-server

  1. Overview
  2. Docs
type command_doc = {
  1. com_name : string;
  2. com_synopsis : string;
  3. com_doc : string;
}
type tool_doc = {
  1. tool_doc : string;
  2. tool_coms : command_doc list;
}
val escape_html : string -> string
val html_of_command_doc : Buffer.t -> command_doc -> unit
val html_of_tool_doc : tool_doc -> string
val css_style : string
val html_header : string
val html_page : (string * string) list -> string