option package:pandoc

option x p tries to apply parser p. If p fails without consuming input, it returns the value x, otherwise the value returned by p.
priority  = option 0 (do{ d <- digit
; return (digitToInt d)
})
A list of functions, each transforming the options data structure in response to a command-line option.
optionMaybe p tries to apply parser p. If p fails without consuming input, it return Nothing, otherwise it returns Just the value returned by p.
optional p tries to apply parser p. It will parse p or nothing. It only fails if p fails after consuming input. It discards the result of p.
Data structures and functions for representing parser and writer options.
Options for wrapping text in the output.
Options for writers
User options