Pulldown Cmark Versions Save

An efficient, reliable parser for CommonMark, a standard dialect of Markdown

v0.7.2

3 years ago

Changes:

  • Minor parsing fixes

v0.7.0

4 years ago

Minor parsing fixes and bug fixes. Now exposes the difference between delimited code blocks and indented code blocks.

v0.6.1b

4 years ago

Minor parsing fixes.

v0.6.0

4 years ago

This is a backward incompatible release. However, most users will not experience any breakage. It also fixes some parser correctness bugs.

Breaking changes:

  • the get_offset method on the parser was removed. Its semantics were poorly defined and only provided users with the start offset of the next event. To get proper source mapping information which includes the entire source range for each event, upgrade the Parser to an OffsetIter using the into_offset_iter method. This produces an iterator over (Event, Range<usize>) tuples.
  • the Event::HtmlBlock and Event::InlineHTML event variants were removed. Inline HTML is now represented by regular HTML events.
  • horizontal rules are now events, and no longer (empty) tags.
  • Event::Header(i32) has been replaced by Event::Heading(u32).
  • the starting index of numbered lists is now represented by a u64 instead of a usize.
  • the FIRST_PASS option has been removed.

v0.5.3

4 years ago

Changes:

  • Addresses rare panics in emphasis routine
  • Fixes some parser correctness issues
  • Small bugfixes

v0.5.2

4 years ago

Changes:

  • bug fixes
  • improved parsing correctness

v0.5.1

4 years ago

Changes:

  • removes last remaining unsafe block in default mode (without simd feature);
  • various bug fixes and guards against quadratic behavior;
  • very minor performance bumps.

v0.5.0

5 years ago

Additions:

  • CommonMark 0.29 compatibility
  • SIMD accelerated parsers feature
  • Guards against known pathological inputs causing quadratic scanning time
  • Speed improvements

Changes:

  • Code spans are no longer tags, but are now events containing a single CowStr. This is a breaking change.

v0.4.1

5 years ago

Minor release with a number of small bug fixes. No breaking changes.

v0.4.0

5 years ago

New extensions (strikethrough, task lists), public CowStr and InlineStr and some small fixes.

This is not backward compatible with v0.3.0, but the changes should be very manageable.