package mdx

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