Module Types.Source_pageSource

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;
}