Module Component.CComment

type block_element = [
  1. | `Code_block of string option * string Odoc_model.Comment.with_location * Odoc_model.Comment.nestable_block_element Odoc_model.Comment.with_location list option
  2. | `Heading of Label.t
  3. | `List of [ `Ordered | `Unordered ] * Odoc_model.Comment.nestable_block_element Odoc_model.Comment.with_location list list
  4. | `Math_block of string
  5. | `Modules of Odoc_model.Comment.module_reference list
  6. | `Paragraph of Odoc_model.Comment.paragraph
  7. | `Table of Odoc_model.Comment.nestable_block_element Odoc_model.Comment.abstract_table
  8. | `Tag of Odoc_model.Comment.tag
  9. | `Verbatim of string
]
type docs_or_stop = [
  1. | `Docs of docs
  2. | `Stop
]