11 releases

0.3.8 Oct 29, 2024
0.3.7 Sep 8, 2024
0.3.3 Mar 3, 2024
0.3.2 Dec 1, 2023
0.1.0 Nov 22, 2023

#739 in Text processing

41 downloads per month
Used in mdbook-typst

MIT/Apache

74KB
1.5K SLoC

Pullup

Pullup converts between pulldown parser events for various markup formats.

Currently supported markup formats:

  • Markdown (via the markdown feature)
  • mdBook (via the mdbook feature)
  • Typst (via the typst feature)

Formats are disabled by default and must be enabled via features before use.

How to use the crate

  1. Parse markup with a format-specific pulldown parser (for example, pulldown_cmark is used to parse Markdown). The parser creates an iterator of markup-specific Events.
  2. Load the format-specific Events into the multi-format ParserEvent provided by this crate.
    • Iterator adaptors to do so are available in the assert module.
  3. Operate on the ParserEvents.
  4. Strip irrelevant ParserEvents and output to a different format.

Dependencies

~0–11MB
~127K SLoC