package cmarker

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module CmarkerSource

Sourcetype t
Sourceval html_of_commonmark : string -> string
Sourcetype render_flag = [
  1. | `SourcePos
  2. | `HardBreaks
  3. | `Safe
  4. | `Unsafe
]
Sourcetype parse_flag = [
  1. | `Normalize
  2. | `ValidateUTF8
  3. | `Smart
]
Sourceval of_string : ?flags:parse_flag list -> string -> t
Sourceval of_file : ?flags:parse_flag list -> string -> [ `Ok of t | `Error of string ]
Sourceval to_xml : ?flags:render_flag list -> t -> string
Sourceval to_html : ?flags:render_flag list -> t -> string
Sourceval to_man : ?flags:render_flag list -> width:int -> t -> string
Sourceval to_commonmark : ?flags:render_flag list -> width:int -> t -> string
Sourceval to_latex : ?flags:render_flag list -> width:int -> t -> string