Module Mdx.Lexer_mdx

type token = [
  1. | `Block of Mdx__.Block.Raw.t
  2. | `Section of int * string
  3. | `Text of string
]
val markdown_token : Lexing.lexbuf -> (token list, [ `Msg of string ]) result
val cram_token : Lexing.lexbuf -> (token list, [ `Msg of string ]) result