Module Url.Anchor

type kind = [
| Path.kind
| `Section
| `Type
| `Extension
| `ExtensionDecl
| `Exception
| `Method
| `Val
| `Constructor
| `Field
]
val pp_kind : Format.formatter -> kind -> unit
val string_of_kind : kind -> string
type t = {
page : Path.t;
anchor : string;(*

Anchor in page where the element is attached

*)
kind : kind;(*

What kind of element the path points to. e.g. "module", "module-type", "exception", ...

*)
}
val extension_decl : Odoc_model.Lang.Extension.t -> t

Anchor for the extension declaration item itself, which doesn't have an identifier in the model.