6 releases

0.3.3 Mar 3, 2024
0.3.2 Dec 1, 2023
0.3.0 Nov 29, 2023
0.2.0 Nov 24, 2023
0.1.0 Nov 22, 2023

#709 in Text processing

Download history 14/week @ 2023-12-19 4/week @ 2024-02-20 144/week @ 2024-02-27 36/week @ 2024-03-05 91/week @ 2024-03-12 21/week @ 2024-03-19 5/week @ 2024-03-26 29/week @ 2024-04-02

148 downloads per month
Used in mdbook-typst

MIT/Apache

63KB
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–13MB
~118K SLoC