Types.Source_page
type info =
| Syntax of string
| Anchor of string
| Link of Url.Anchor.t
type code = span list
and span =
| Tagged_code of info * code
| Plain_code of string
type t = {
url : Url.Path.t;
contents : code;
}