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§
- Markdown
Options - Options for parsing markdown.
Functions§
- new_
cmark_ parser - Creates a new pulldown-cmark parser of the given text.