1 unstable release

0.0.1 May 26, 2020

#59 in #markdown-parser


Used in 2 crates (via equt-md-ext)

MIT license

270KB
7K SLoC

This repo is the fork of pulldown-cmark, which is the markdown parser behind the docs.rs.

Forked for adding support for frontmatter and math.


lib.rs:

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.

By default, only CommonMark features are enabled. To use extensions like tables, footnotes or task lists, enable them by setting the corresponding flags in the Options struct.

Example

use pulldown_cmark::{Parser, Options, html};

let markdown_input = "Hello world, this is a ~~complicated~~ *very simple* example.";

// Set up options and parser. Strikethroughs are not part of the CommonMark standard
// and we therefore must enable it explicitly.
let mut options = Options::empty();
options.insert(Options::ENABLE_STRIKETHROUGH);
let parser = Parser::new_ext(markdown_input, options);

// Write to String buffer.
let mut html_output = String::new();
html::push_html(&mut html_output, parser);

// Check that the output is what we expected.
let expected_html = "<p>Hello world, this is a <del>complicated</del> <em>very simple</em> example.</p>\n";
assert_eq!(expected_html, &html_output);

Dependencies

~310–495KB