package odoc

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.Source_pageSource

type target = {
  1. documentation : Url.Anchor.t option;
  2. implementation : Url.Anchor.t option;
}
type info =
  1. | Syntax of string
  2. | Anchor of string
type code = span list
and span =
  1. | Tagged_code of info * code
  2. | Plain_code of string
type t = {
  1. url : Url.Path.t;
  2. contents : code;
}