package omd
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
A markdown parser in OCaml
The document model
The following types define the AST representing Omd's document model.
type doc = attributes block list
Helper functions for constructing the document AST
Generating and constructing tables of contents
Helper functions
Perform escaping of HTML entities. Turns: '"'
into """
, '&'
into "&"
, '<'
in "<"
and '>'
into ">"
Converting to and from documents
val of_channel : in_channel -> doc
val of_string : string -> doc
val to_html : ?auto_identifiers:bool -> doc -> string
val to_sexp : doc -> string
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page