Module Wikicreole
module Wikicreole : sig..end
Parser for Wikicreole
Author(s): Jérôme Vouillon, Vincent Balat, Boris Yakobowski
type attribs = (string * string) list
Xml-like attributes for the extension (eg val='foo')
module type RawBuilder = sig..end
type ('a, 'b) plugin = 'a -> attribs -> string option -> 'b
type plugin_resolver = Â |Â Resolver of (string -> plugin_resolver option)
module type Builder = sig..end
type ('a, 'b) builder =
  (module Wikicreole.Builder with type flow = 'b and type param = 'a)
val from_string :
  ?sectioning:bool ->
  'a -> ('a, 'b) builder -> string -> 'b list
