package wikitext

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type order =
  1. | Ordered
  2. | Unordered
type def_type =
  1. | Term
  2. | Description
type table_cell =
  1. | TableCell
  2. | TableHeader
type document = block list
and block =
  1. | Header of int * inline list
  2. | Paragraph of inline list
  3. | List of block list list
  4. | NumList of block list list
  5. | DefList of def_block list
  6. | Table of inline list * table_block list list
  7. | Hrule
  8. | NoWikiBlock of string
and table_block =
  1. | TableHead of inline list
  2. | TableItem of inline list
and def_block = inline list * block list
and inline =
  1. | Bold of inline list
  2. | Italic of inline list
  3. | String of string
  4. | NoWiki of string