Module parser

Source
Expand description

Special parsers for things not covered by pulldown-cmark.

Structs§

MDBlockQuote
Quoted text
MDCell
One table cell.
MDHeader
Parsed header.
MDItem
One list item.
MDLinkRef
Parsed link reference
MDRow
One table row.

Functions§

parse_md_block_quote
Parse a block-quote.
parse_md_header
Parse the text as header.
parse_md_item
Parse a single list item into marker and text.
parse_md_link_ref
Parse the text as link reference
parse_md_row
Split single row. Translate x-position to cell+cell_offset. info: returns the string before the first | and the string after the last | too!!