Crate mdbook_markdown

Crate mdbook_markdown 

Source
Expand description

Markdown processing used in mdBook.

This crate provides functions for processing Markdown in the same way as mdBook. The pulldown_cmark crate is used as the underlying parser. This crate re-exports pulldown_cmark so that you can access its types.

Modules§

pulldown_cmark
Pull parser for CommonMark. This crate provides a Parser struct which is an iterator over Events. This iterator can be used directly, or to output HTML using the HTML module.

Structs§

MarkdownOptions
Options for parsing markdown.

Functions§

new_cmark_parser
Creates a new pulldown-cmark parser of the given text.