mdx
Mdx.Ocaml_delimiter
mdx.csexp
mdx.test
mdx.top
type syntax =
| Cmt
| Attr
The Attr syntax is legacy, its support will be dropped in 2.x in favor of Cmt.
Attr
Cmt
type part_begin = {
indent : string;
payload : string;
}
type t =
| Part_begin of syntax * part_begin
| Part_end
val parse : string -> (t option, [ `Msg of string ]) Result.result