pulldown-cmark-to-cmark
Convert pulldown-cmark Events back to the string they were parsed from
22.0.1
61M downloads/mo
#1095 most downloaded on crates.io
Byron/pulldown-cmark-to-cmark
What this package is like to depend on
Last release 13 days ago
10 Aug 2026
Release timing varies
gaps range from 2 weeks to 9 months
Nearly every release is documented
notes for 51 of 52 stable releases
1 version withdrawn
withdrawn after publishing
9 years old
53 releases · first in 2018
3 releases in the last 12 months
see the full history below
Release timeline
53 releases · Feb 2018 to Aug 2026Releases
latest 53-
22.0.110 Aug 2026Release notes
Open source →Bug Fixes
-
escape brackets in generated link labels
Shortcut and collapsed link labels are reconstructed from decoded text, so
bracket escapes were lost when their reference definitions were emitted. This
made the generated Markdown invalid for labels containing brackets.Escape backslashes and square brackets while capturing generated link and image
labels, while leaving parser-provided explicit reference IDs unchanged to avoid
double escaping. Add regression coverage for shortcut, explicit, and image
references and update the CommonMark conformance count from 585 to 586.
Commit Statistics
- 2 commits contributed to the release.
- 230 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #109
Commit Details
view detailsRelease notes
Open source →Bug Fixes
-
<csr-id-e4467422fbb68aff72a96808c3ab62b503897adc/> escape brackets in generated link labels <!-- agent --> Shortcut and collapsed link labels are reconstructed from decoded text, so bracket escapes were lost when their reference definitions were emitted. This made the generated Markdown invalid for labels containing brackets.
Escape backslashes and square brackets while capturing generated link and image labels, while leaving parser-provided explicit reference IDs unchanged to avoid double escaping. Add regression coverage for shortcut, explicit, and image references and update the CommonMark conformance count from 585 to 586.
Commit Statistics
<csr-read-only-do-not-edit/>
- 2 commits contributed to the release.
- 230 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #109
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
-
22.0.023 Dec 2025Release notes
Open source →New Features
- Add #![deny(missing_docs)] attribute to enable missing documentation checks and add comprehensive documentation for all public items
New Features (BREAKING)
-
Add support for super/subscript without html
Superscript and subscript can be presented in markdown as:
^superscript^ andsubscriptrespectively. This is not always turned on,
and many people prefer the HTML tag form, however in order to round-trip
markdown which uses the symbolic form we need an option to enable that.This feature is enabled via a new field in the
Optionsstruct.
Commit Statistics
- 7 commits contributed to the release.
- 43 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details- Uncategorized
- Merge pull request #107 from kinnison/super-sub-not-html (15e7a74)
- Refactor (aba929c)
- Add testing support for symbolic super/subscript (463b65a)
- Add support for super/subscript without html (ffa22b3)
- Merge pull request #108 from Byron/copilot/add-documentation-and-deny-attrs (077d5d0)
- Refactor (6d09f44)
- Add #![deny(missing_docs)] attribute to enable missing documentation checks and add comprehensive documentation for all public items (9b55c82)
Release notes
Open source →New Features
- <csr-id-9b55c822ae8c824954452d1414e1dc33eadc5b73/> Add #![deny(missing_docs)] attribute to enable missing documentation checks and add comprehensive documentation for all public items
New Features (BREAKING)
-
<csr-id-ffa22b3e25ef79aad66774f1c08b1a4a1b1bc4f4/> Add support for super/subscript without html Superscript and subscript can be presented in markdown as: ^superscript^ and ~subscript~ respectively. This is not always turned on, and many people prefer the HTML tag form, however in order to round-trip markdown which uses the symbolic form we need an option to enable that.
This feature is enabled via a new field in the
Optionsstruct.
Commit Statistics
<csr-read-only-do-not-edit/>
- 8 commits contributed to the release.
- 44 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v22.0.0 (
d04ad95) - Merge pull request #107 from kinnison/super-sub-not-html (
15e7a74) - Refactor (
aba929c) - Add testing support for symbolic super/subscript (
463b65a) - Add support for super/subscript without html (
ffa22b3) - Merge pull request #108 from Byron/copilot/add-documentation-and-deny-attrs (
077d5d0) - Refactor (
6d09f44) - Add #![deny(missing_docs)] attribute to enable missing documentation checks and add comprehensive documentation for all public items (
9b55c82) </details>
- Release pulldown-cmark-to-cmark v22.0.0 (
-
21.1.009 Nov 2025Release notes
Open source →New Features
-
Improve CommonMark conformance testing output
This is a major improvement to the rendering of the failing
CommonMark conformance test output, that should make it easier
to read and understand when pulldown-cmark-to-cmark is producing
erroneous output.Additionally, this introduces a way to force the printing of the
CommonMark failure report from the command line:$ FULL_CMARK_RESULTS=true cargo testand documents in CONTRIBUTING.md that new contributors may want
to start with trying to improve conformance.This removes
#[should_panic]from the main CommonMark test. Instead,
we now hard-code in how many of the CommonMark tests are known to pass.If the number that actually passes increases or decreases, this test
will fail, informing the user either that they have introduced a bug
(decrease), or that they've successfully improved conformance (increase).Previously, if a change accidentally reduce the conformance, there was
no easy way to know, since that information was not stored/tracked
in any way.
Other
- Drop comment headers
Refactor
-
Add Repeated utility to simplify writing repeated content
-
Move and group related code
My impression reading through the code in this project is that
top-level statements have gotten a bit intertangled over time;
this tries to reorder things to have a clearer flow and
structure, grouping related things together.For example, this moves the recently added Error enum up above
all of the API functions, instead of leaving it somewhat
arbitrarily nestled betweencmark_resume_with_options()and
cmark_resume_one_event().No code changes were made to the body of functions or types.
This also does not change any of the public APIs, only where
code is located.-
Group padded newline logic at top of text_modifications.rs
-
Rename
padding_of()tolist_item_padding_of() -
Add 'Public API Functions' header in lib.rs
-
Consolidate public enum and struct types at the
top of lib.rs, instead of leaving them scattered
amongst thecmark*()public functions. -
Consolidate the two
impl State<'_>statements -
Move
cmark_resume(),cmark()andcmark_with_options()
from the bottom of lib.rs up to the top, before the ~600
implementation ofcmark_resume_one_event()that makes up
the bulk of lib.rs
-
-
Add State::set_minimum_newlines_before_start()
This should help with readability. As an example, I didn't realize
initially that all of theifstatements updated in this PR
were actually modifying the same field.But once I started doing the more generic refactoring of adding
aset_option_minimum()method, I looked at every line and
realized they were all the same.Factoring this to a method should clarify to future readers that
updating newlines_before_start specifically is a recurring operation. -
Use
write_padded_string()in a couple additional places
Additionally, while in the neighhborhood, addpub(crate)to the other
text_modifications.rs private helpersThese being marked as
pubis misleading since thetext_modifications
module is not actually externally public, and these functions
are never re-exported publicly.
Commit Statistics
- 12 commits contributed to the release.
- 264 days passed between releases.
- 6 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details- Uncategorized
- Release pulldown-cmark-to-cmark v21.0.0 (d69f748)
- Merge pull request #104 from ConnorGray/connorgray/refactor-5 (bf34a3c)
- Add Repeated utility to simplify writing repeated content (942c42b)
- Merge pull request #103 from ConnorGray/connorgray/refactor-4 (3005f1b)
- Drop comment headers (5b93e7e)
- Move and group related code (30b706b)
- Merge pull request #102 from ConnorGray/connorgray/revamp-conformance-testing (3169307)
- Merge pull request #101 from ConnorGray/connorgray/refactor-3 (ac3aaec)
- Merge pull request #100 from ConnorGray/connorgray/refactor-2 (29c8c20)
- Improve CommonMark conformance testing output (91ffc95)
- Add State::set_minimum_newlines_before_start() (31a49d0)
- Use
write_padded_string()in a couple additional places (3ab278b)
Release notes
Open source →<csr-id-5b93e7e7b51000632bfecf6d7a49e48d9fb3bc19/> <csr-id-942c42ba6fc517b595130603e9fd4aa1309ee755/> <csr-id-30b706b719fd2554b664bc7d2c40bcb7e7095a8c/> <csr-id-31a49d0d45c1c32bfcf1c653121ee3ca0a1d4fe8/> <csr-id-3ab278b9db5546f405bcd13bdf5c3f0d59d2fb8a/>
New Features
-
<csr-id-91ffc9508b129cd603b870d38fd9bd88240d07fe/> Improve CommonMark conformance testing output This is a major improvement to the rendering of the failing CommonMark conformance test output, that should make it easier to read and understand when pulldown-cmark-to-cmark is producing erroneous output.
Additionally, this introduces a way to force the printing of the CommonMark failure report from the command line:
$ FULL_CMARK_RESULTS=true cargo test
and documents in CONTRIBUTING.md that new contributors may want to start with trying to improve conformance.
This removes
#[should_panic]from the main CommonMark test. Instead, we now hard-code in how many of the CommonMark tests are known to pass.If the number that actually passes increases or decreases, this test will fail, informing the user either that they have introduced a bug (decrease), or that they've successfully improved conformance (increase).
Previously, if a change accidentally reduce the conformance, there was no easy way to know, since that information was not stored/tracked in any way.
Commit Statistics
<csr-read-only-do-not-edit/>
- 13 commits contributed to the release.
- 264 days passed between releases.
- 6 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v21.1.0 (
4fa1f9e) - Release pulldown-cmark-to-cmark v21.0.0 (
d69f748) - Merge pull request #104 from ConnorGray/connorgray/refactor-5 (
bf34a3c) - Add Repeated utility to simplify writing repeated content (
942c42b) - Merge pull request #103 from ConnorGray/connorgray/refactor-4 (
3005f1b) - Drop comment headers (
5b93e7e) - Move and group related code (
30b706b) - Merge pull request #102 from ConnorGray/connorgray/revamp-conformance-testing (
3169307) - Merge pull request #101 from ConnorGray/connorgray/refactor-3 (
ac3aaec) - Merge pull request #100 from ConnorGray/connorgray/refactor-2 (
29c8c20) - Improve CommonMark conformance testing output (
91ffc95) - Add State::set_minimum_newlines_before_start() (
31a49d0) - Use
write_padded_string()in a couple additional places (3ab278b) </details>
- Release pulldown-cmark-to-cmark v21.1.0 (
-
-
21.0.018 Feb 2025Release notes
Open source →The breaking release is to avoid side-effects with different
pulldown-cmarkversions.
This crate now comes with version 13.Other
- Adjust wording + typos
Refactor
-
Add helper to factor out newline + padding pattern
When writing a newline into the generated Markdown content
to start a new line of output, it is (almost) always necessary
to output the "padding" characters used to indent the content
at the current location in the document, based on the hierarchy
of block-level elements the output cursor is "inside" of.Since writing a newline and writing the current padding are
always paired, factoring them out into a function should help
with readability and consistency in performing this minor
two-step dance correctly.
Commit Statistics
- 8 commits contributed to the release.
- 6 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details- Uncategorized
- Update changelog prior to release (475478a)
- Bump version to 21 for pulldown-cmark 13 (ed16be5)
- Merge pull request #99 from danieleades/cmark-13 (fb9bbd6)
- Merge pull request #98 from ConnorGray/connorgray/refactor-1 (b47d6c9)
- Update doc-string so
State::paddingis shown conventionally (e10010f) - Update to pulldown-cmark 13 (efbdd3a)
- Adjust wording + typos (05e247e)
- Add helper to factor out newline + padding pattern (2252ba1)
Release notes
Open source →<csr-id-05e247e5c7a74ac7bf9a906417724b8a275cabcc/> <csr-id-2252ba1d9cf93256a8bcdd721813ed2397e32464/> <csr-id-942c42ba6fc517b595130603e9fd4aa1309ee755/> <csr-id-30b706b719fd2554b664bc7d2c40bcb7e7095a8c/> <csr-id-31a49d0d45c1c32bfcf1c653121ee3ca0a1d4fe8/> <csr-id-3ab278b9db5546f405bcd13bdf5c3f0d59d2fb8a/> <csr-id-5b93e7e7b51000632bfecf6d7a49e48d9fb3bc19/>
The breaking release is to avoid side-effects with different
pulldown-cmarkversions. This crate now comes with version 13.Commit Statistics
<csr-read-only-do-not-edit/>
- 9 commits contributed to the release.
- 6 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v21.0.0 (
c1347d1) - Update changelog prior to release (
475478a) - Bump version to 21 for pulldown-cmark 13 (
ed16be5) - Merge pull request #99 from danieleades/cmark-13 (
fb9bbd6) - Merge pull request #98 from ConnorGray/connorgray/refactor-1 (
b47d6c9) - Update doc-string so
State::paddingis shown conventionally (e10010f) - Update to pulldown-cmark 13 (
efbdd3a) - Adjust wording + typos (
05e247e) - Add helper to factor out newline + padding pattern (
2252ba1) </details>
- Release pulldown-cmark-to-cmark v21.0.0 (
-
20.0.112 Feb 2025Release notes
Open source →Bug Fixes
- definition list block indentation now works correctly.
Commit Statistics
- 7 commits contributed to the release.
- 58 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #97
Thanks Clippy
Clippy helped 1 time to make code idiomatic.
Commit Details
view details- #97
- Definition list block indentation now works correctly. (27cbc16)
- Uncategorized
- Merge branch 'definition_list' (435307d)
- Thanks clippy (abb85a6)
- Treat definition list entries as blocks (261c23b)
- Merge pull request #96 from mgsloan/improve-naming-in-code-escaping-and-add-comments (1ffd7c8)
- Add comments explaining inline code escaping (60e1854)
- Improve naming in function for counting max consecutive chars (32628b3)
Release notes
Open source →Bug Fixes
- <csr-id-27cbc1635ca77acae37fe4723daf75dd1c8733a0/> definition list block indentation now works correctly.
Commit Statistics
<csr-read-only-do-not-edit/>
- 8 commits contributed to the release.
- 59 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #97
Thanks Clippy
<csr-read-only-do-not-edit/>
Clippy helped 1 time to make code idiomatic.
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- #97
- Definition list block indentation now works correctly. (
27cbc16)
- Definition list block indentation now works correctly. (
- Uncategorized
- Release pulldown-cmark-to-cmark v20.0.1 (
80f82f4) - Merge branch 'definition_list' (
435307d) - Thanks clippy (
abb85a6) - Treat definition list entries as blocks (
261c23b) - Merge pull request #96 from mgsloan/improve-naming-in-code-escaping-and-add-comments (
1ffd7c8) - Add comments explaining inline code escaping (
60e1854) - Improve naming in function for counting max consecutive chars (
32628b3) </details>
- Release pulldown-cmark-to-cmark v20.0.1 (
-
20.0.015 Dec 2024Release notes
Open source →Bug Fixes (BREAKING)
-
Add structured error handling for cmark(), cmark_resume() etc
Whencmark_resume_with_options(), which serves as basis for the other
cmark*functions, finds an inconsistent event stream (for example, two
consecutive heading start tags), it panics.Introduce a custom error type
Errorin the crate and change the return
type of all public functions fromfmt::Result<_>toResult<_, Error>.The next commit adds an integration test.
Commit Statistics
- 4 commits contributed to the release.
- 4 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #91
Commit Details
view detailsRelease notes
Open source →Bug Fixes (BREAKING)
-
<csr-id-fdc5859ff9823189c6966d5448468bff1d82d899/> Add structured error handling for cmark(), cmark_resume() etc When
cmark_resume_with_options(), which serves as basis for the othercmark*functions, finds an inconsistent event stream (for example, two consecutive heading start tags), it panics.Introduce a custom error type
Errorin the crate and change the return type of all public functions fromfmt::Result<_>toResult<_, Error>.The next commit adds an integration test.
Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release.
- 4 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #91
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
-
19.0.111 Dec 2024Release notes
Open source →Bug Fixes
- harden again manufactured input which could previously trigger assertion failures.
Commit Statistics
- 3 commits contributed to the release.
- 19 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #91
Commit Details
view detailsRelease notes
Open source →Bug Fixes
- <csr-id-a368f0f4ddbfeb8728abf92feaf0d4ed0e81b858/> harden again manufactured input which could previously trigger assertion failures.
Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 19 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #91
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
19.0.022 Nov 2024Release notes
Open source →New Features (BREAKING)
- Make
Statestruct non-exhaustive
That way, future additions to the rather internal state won't be a reason for breaking changes anymore.
Bug Fixes (BREAKING)
-
drasticly improve escaping
!,#, and|
Raises spec tests from 578 to 580. It handles cases that look like theseLink, not image: \ This header ends with hashes, not an ATX trailer ### ==================================================== | a \| b | a \| c | |--------|--------|
Commit Statistics
- 11 commits contributed to the release.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details- Uncategorized
- Merge pull request #90 from chriskrycho/escape-code-in-tables (daef56b)
- Add fixtures for pipes-in-code which should not be escaped (a85fe39)
- Use
Cow<'a, str>to minimize allocations for pipe escaping (022fa11) - Correct comment/note on when pipe characters are/not escaped (c9ecdd2)
- Make
Statestruct non-exhaustive (13785fe) - Improve test expectations for escaping pipes in inline code (e7f0784)
- Escape special characters in inline code in tables (37e8dcb)
- Add fixture for tables with escaped characters (edcac27)
- Minor improvements (f6fba5f)
- Merge branch 'notriddle/main' (4690885)
- Drasticly improve escaping
!,#, and|(76c24a1)
Release notes
Open source →New Features (BREAKING)
- <csr-id-13785fe11cc8851f6f939b1763ae99d655a2d5dc/> Make
Statestruct non-exhaustive That way, future additions to the rather internal state won't be a reason for breaking changes anymore.
Bug Fixes (BREAKING)
-
<csr-id-76c24a16cf34d1675bef52aa8b4c58edebefbfa8/> drasticly improve escaping
!,#, and|Raises spec tests from 578 to 580. It handles cases that look like theseLink, not image: !a
This header ends with hashes, not an ATX trailer ###
a | b a | c
Commit Statistics
<csr-read-only-do-not-edit/>
- 12 commits contributed to the release.
- 37 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v19.0.0 (
ccc8a52) - Merge pull request #90 from chriskrycho/escape-code-in-tables (
daef56b) - Add fixtures for pipes-in-code which should not be escaped (
a85fe39) - Use
Cow<'a, str>to minimize allocations for pipe escaping (022fa11) - Correct comment/note on when pipe characters are/not escaped (
c9ecdd2) - Make
Statestruct non-exhaustive (13785fe) - Improve test expectations for escaping pipes in inline code (
e7f0784) - Escape special characters in inline code in tables (
37e8dcb) - Add fixture for tables with escaped characters (
edcac27) - Minor improvements (
f6fba5f) - Merge branch 'notriddle/main' (
4690885) - Drasticly improve escaping
!,#, and|(76c24a1) </details>
- Release pulldown-cmark-to-cmark v19.0.0 (
- Make
-
18.0.016 Oct 2024Release notes
Open source →Chore
- use
TextMergeStreamfor round-trip tests
This increases the amount of passing tests to 578.
It doesn't strictly improve the quality of implementation,
but since separate text events aren't supposed to be semantic,
these failures seem spurrious.
New Features
- angle brackets if link paren is unbalanced
Increases passing spec tests from 473 to 477.
Bug Fixes
- write block quote kind only once
New Features (BREAKING)
- correctly round-trip code blocks with no trailing newline
- round-trip indented code blocks
This raises the number of passing spec tests from 459 to 473.
Commit Statistics
- 10 commits contributed to the release.
- 40 days passed between releases.
- 5 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details- Uncategorized
- Merge pull request #87 from notriddle/notriddle/link-tweaks (81ac29b)
- Use
TextMergeStreamfor round-trip tests (b3d7df2) - Angle brackets if link paren is unbalanced (d8f22c1)
- Merge branch 'blockquote-kinds' (d5323a8)
- Remove allocation (33ce10d)
- Write block quote kind only once (2f75de2)
- Merge branch 'notriddle/main' (848abc3)
- Run cargo fmt and assure it doesn't regress anymore. (3fdf308)
- Correctly round-trip code blocks with no trailing newline (db76794)
- Round-trip indented code blocks (8a9573d)
Release notes
Open source →<csr-id-b3d7df263409e2f9ebdaae843e087c714b994367/>
New Features
- <csr-id-d8f22c18562ebc50c1ca6960bd745adab706a5b6/> angle brackets if link paren is unbalanced Increases passing spec tests from 473 to 477.
Bug Fixes
- <csr-id-2f75de249b1925dad69a43add3a22ace27e42904/> write block quote kind only once
New Features (BREAKING)
- <csr-id-db767944612b0e0068d7872ec515e3f0c23865b4/> correctly round-trip code blocks with no trailing newline
- <csr-id-8a9573d0b1b6095248ba2869c63da8399d31acfb/> round-trip indented code blocks This raises the number of passing spec tests from 459 to 473.
Commit Statistics
<csr-read-only-do-not-edit/>
- 11 commits contributed to the release.
- 40 days passed between releases.
- 5 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v18.0.0 (
6c8bc4d) - Merge pull request #87 from notriddle/notriddle/link-tweaks (
81ac29b) - Use
TextMergeStreamfor round-trip tests (b3d7df2) - Angle brackets if link paren is unbalanced (
d8f22c1) - Merge branch 'blockquote-kinds' (
d5323a8) - Remove allocation (
33ce10d) - Write block quote kind only once (
2f75de2) - Merge branch 'notriddle/main' (
848abc3) - Run cargo fmt and assure it doesn't regress anymore. (
3fdf308) - Correctly round-trip code blocks with no trailing newline (
db76794) - Round-trip indented code blocks (
8a9573d) </details>
- Release pulldown-cmark-to-cmark v18.0.0 (
- use
-
17.0.006 Sep 2024Release notes
Open source →New Features (BREAKING)
- retain more details on reference links
This raises the number of passing spec tests from 436 to 459.
Bug Fixes (BREAKING)
- spurrious code blocks when char escapes start text
Commit Statistics
- 5 commits contributed to the release.
- 14 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view detailsRelease notes
Open source →New Features (BREAKING)
- <csr-id-3170061202dcdbb291abbb467fbee1de970d78bd/> retain more details on reference links This raises the number of passing spec tests from 436 to 459.
Bug Fixes (BREAKING)
- <csr-id-c3a0f322dfc3450e1973ea3ed79e55a8c3b8b718/> spurrious code blocks when char escapes start text
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 15 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- retain more details on reference links
-
16.0.122 Aug 2024Release notes
Open source →<csr-id-21a7f26a611e7a5b99ab33e9386acd30f0188960/>
Commit Statistics
<csr-read-only-do-not-edit/>
- 16 commits contributed to the release.
- 2 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v16.0.1 (
ab22a57) - Merge pull request #81 from caspermeijn/msrv (
85ca9d4) - Make clear that the rust-version field follows
pulldown-cmark's MSRV. (7269c4f) - Lower MSRV to 1.71.1 (
21a7f26) - Merge pull request #79 from danieleades/clippy (
c6899bc) - Use 'Self' keyword (clippy::use_self) (
1a3029f) - Remove unnecessary negation (clippy::if_not_else) (
5745ce5) - Remove unneeded 'ref' bindings (clippy::ref_binding_to_reference) (
820b661) - Nest or patterns (clippy::unnested_or_patterns) (
43c6e8a) - Explicitly match unit values (clippy::ignored_unit_patterns) (
d636dc6) - Avoid explicit iter loops (clippy::explicit_iter_loop) (
a8c7fa5) - Use inline format args (clippy::uninlined_format_args) (
d97f8f5) - Remove needless raw string hashes (clippy::needless_raw_string_hashes) (
6e2ae15) - Use semicolons if nothing returned (clippy::semicolon_if_nothing_returned) (
8f9d4bf) - Merge pull request #80 from danieleades/msrv (
08ffcb8) - Add MSRV check to CI (
66b9ed2) </details>
- Release pulldown-cmark-to-cmark v16.0.1 (
-
16.0.020 Aug 2024Release notes
Open source →Add support for
pulldown-cmarkv0.12, and an understanding of markdown Definition Lists.Commit Statistics
<csr-read-only-do-not-edit/>
- 8 commits contributed to the release.
- 65 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v16.0.0 (
4dd27c5) - Bump major version to help isolage the
pulldown-cmarkcrate at v0.12 (17b5308) - Update changelog prior to release (
7b74f1b) - Merge branch 'cmark-12' (
f1f18d4) - Fix test (
173ae85) - Add failing test case (
7674b54) - Add test for definition list item start (
e686a8f) - Add 'todo' placeholders (
f1a8a3e) </details>
- Release pulldown-cmark-to-cmark v16.0.0 (
-
15.0.116 Jun 2024Release notes
Open source →Bug Fixes
- <csr-id-2ac74720c4d3fc8ccda8eaae86508bd62c28b43d/> tables render more correctly
Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 1 day passed between releases.
- 1 commit was understood as conventional.
- 2 unique issues were worked on: #70, #76
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
15.0.015 Jun 2024Release notes
Open source →[!NOTE] This release adds support for Math expressions, and notification boxes like the one this text is written in.
New Features (BREAKING)
- <csr-id-bff28af3c51a3a55675d5a64d8f3bda2d37701aa/> Update to pulldown-cmark v0.11 for math-expression support and special block quotes Update pulldown cmark
Commit Statistics
<csr-read-only-do-not-edit/>
- 20 commits contributed to the release.
- 5 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v15.0.0 (
e6c8c3e) - Prepare changelog prior to release (
d72bfd3) - Upgrade dev-dependencies (
d8cbd37) - Update to pulldown-cmark v0.11 for math-expression support and special block quotes (
bff28af) - Merge blockquote kind parsing (
6d05a28) - Remove unused import (
89d5dd5) - Remove support for dollar surrounding backtick (
d55ac5d) - Generate snapshot (
c8632c4) - Add suggested fixture (
f961f76) - Use escaped comparison (
74a5b59) - Update math tests (
e94e9e4) - Fix alternate math notation (
8e09ddb) - Regenerate snapshots (
153ff68) - Add mathematical expressions (
42049d9) - Regenerate snapshots (
ea04970) - Fix incorrect formatting (
1d047be) - Add blockquote kinds (
dcf769c) - Update tests (
8723b1f) - Handle new types and change (
c81d969) - Update pulldown-cmark (
173b8a4) </details>
- Release pulldown-cmark-to-cmark v15.0.0 (
-
14.0.110 Jun 2024Release notes
Open source →This release contains a fix to avoid escaping characters within codeblocks. See https://github.com/Byron/pulldown-cmark-to-cmark/issues/73 for details.
Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 0 commits were understood as conventional.
- 1 unique issue was worked on: #73
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
14.0.010 Jun 2024Release notes
Open source →This release adds support for keeping escapes in the original source for the input events, assuming the new
cmark_resume_with_source_range_and_options()function is used.Please also note that for most this won't be a breaking change as only a field was added to
State, which isn't used unless you do incremental event serialization.Bug Fixes (BREAKING)
- <csr-id-6c8297c03eb82ac95fa9dd559e3337e470d70c72/> clarify what
last_event_end_indexindices into and how it's used This is marked as breaking change as the field itself is new inStateand could be breaking for some.
Commit Statistics
<csr-read-only-do-not-edit/>
- 17 commits contributed to the release.
- 85 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v14.0.0 (
1978c0c) - Fix manifest includes to allow publishing (
cfcabc4) - Release pulldown-cmark-to-cmark v14.0.0 (
8c6bee4) - Fix doc-links (
d9d81c0) - Prepare changelog prior to release (
c332f98) - Merge pull request #71 from SichangHe/no-unnecessary-escape (
386e663) - Clarify what
last_event_end_indexindices into and how it's used (6c8297c) - Dedup test code (
f66724b) - Attempt to address @Bryon first comments https://github.com/Byron/pulldown-cmark-to-cmark/pull/71#pullrequestreview-2081814286 (
bebff1e) - Test
<escape handling (542bc1f) - Restore
Statederives (ea17e27) - Rm test that fail for old implementation (
78965c4) - Better explain why
cmark_resume_with_source_range_and_optionsis different (49f60d5) source_rangepersist special character escape by peeking source (92ad2c8)- Placeholder functions not using source range (
a234ed5) - Extract nested functionalities (
93cbb33) - Failing rustdoc test https://github.com/Byron/pulldown-cmark-to-cmark/issues/51 (
8c6ccdb) </details>
- Release pulldown-cmark-to-cmark v14.0.0 (
- <csr-id-6c8297c03eb82ac95fa9dd559e3337e470d70c72/> clarify what
-
13.0.017 Mar 2024Release notes
Open source →<csr-id-5d940367d7d720a176c361b99ab8699897a53313/>
New Features
- <csr-id-8d39a30b20b621a0db6274ee6bb58755c5198d01/> add newlines_after_metadata option
Bug Fixes
- <csr-id-7b27baad538570400eeb651b2e9b2b786ad43189/> set correct yaml metablock end tag
New Features (BREAKING)
- <csr-id-834c74b9df9b9451000b069988d8259e2b881692/> support for controlling the amount of newlines after metadata blocks.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 1 day passed between releases.
- 4 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
12.0.016 Mar 2024Release notes
Open source →<csr-id-b90defbf6ade8b3c1c0585f7933421f086eeb123/>
New Features (BREAKING)
-
<csr-id-640148b354eb7325e1fbeec2acbd4867d3c536fc/> upgrade to pulldown-cmark v0.10 This comes with a variety of changes to the
Statetype, which is the reason this is a breaking release.The overall correctness is improved though, bringing the amount of successful tests of the spec to 435/649 (up by 4).
Commit Statistics
<csr-read-only-do-not-edit/>
- 18 commits contributed to the release.
- 49 days passed between releases.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v12.0.0 (
002be03) - Upgrade to pulldown-cmark v0.10 (
640148b) - Avoid allocations (
366f304) - Allow State to borrow from events (
b3bfd40) - Remove State::last_was_html (
42739b5) - Test custom attributes (
8152f81) - Adjust snapshots (
1c21b70) - Remove trailing whitespace in snapshots (seems to be a pulldown-cmark parsing change) (
b09ce73) - Fix handling of HTML blocks (
6afb4cd) - Clippy (
4a66292) - Fix EndTag tests (
38bb5dd) - Comment out end tag tests that aren't triviably updateable (
82110a4) - Support heading attributes (
fc30c6d) - Fix test (
ea2608e) - Fix easily-updateable tests (
ebf9b69) - Add link/image stacks and track current header (
3090b8a) - Metadata blocks (
a26731c) - Update pulldown-cmark dependency (
b90defb) </details>
- Release pulldown-cmark-to-cmark v12.0.0 (
-
-
11.2.027 Jan 2024Release notes
Open source →New Features
- <csr-id-e33936543e4db169fb7734cc0ce83127a0c04e8b/> introduce
calculate_code_block_token_count(), along withDEFAULT_CODE_BLOCK_TOKEN_COUNT. That way it's possible to correctly determine the amount of fenced code-block tokens needed to render all given events such that code-blocks are retained.
Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 2 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- <csr-id-e33936543e4db169fb7734cc0ce83127a0c04e8b/> introduce
-
11.1.025 Jan 2024 withdrawnRelease notes
Open source →New Features
- <csr-id-10b855fc6433ba1aa70add57be261d8be3fc2249/> add
count_code_block_tokens()function. It allows to calculate the amount of backticks around a code block for given events to assure code-blocks are reproduced correctly when rendering the same events.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 62 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v11.1.0 (
d236e29) - Add
count_code_block_tokens()function. (10b855f) - Refactor (
c0f631d) - Add check_code_block_token_count function (
f119d77) - Merge pull request #64 from max-heller/readme-links (
b926264) - Update pulldown-cmark and mdbook links in README (
31e8bb5) </details>
- Release pulldown-cmark-to-cmark v11.1.0 (
- <csr-id-10b855fc6433ba1aa70add57be261d8be3fc2249/> add
-
11.0.224 Nov 2023Release notes
Open source →Bug Fixes
- <csr-id-9a64f6bc8fafe22bfd4d3fc6704a097719a10566/> Escape double quotes in link titles.
Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release.
- 5 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #62
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
11.0.119 Nov 2023Release notes
Open source →Fix
- properly format multi-line footnotes. Merge branch 'multiline-footnotes' (
f6b5348)
Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release.
- 93 days passed between releases.
- 0 commits were understood as conventional.
- 1 unique issue was worked on: #61
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- properly format multi-line footnotes. Merge branch 'multiline-footnotes' (
-
11.0.018 Aug 2023Release notes
Open source →New Features
- <csr-id-d9eb45477fc23da0960cdb24f9f20d67bfac0784/> add apache-2 license text to crate as well
Bug Fixes
- <csr-id-c2a0113cc649af32288c916026c47e63fbccb6ec/> improve handling of inline code spans with multiple backticks Merge pull request #56 from mgeisler/inline-code
New Features (BREAKING)
- <csr-id-2263c2f33d9fb546881c0837f391bf266528f8d2/> Options to choose the ordered list marker and to auto-increment the ordered list numbers.
- Based on the commonmark list spec an ordered list can use
.or)as the ordered list marker. Now users can configure the marker they want to use with theordered_list_tokenoption.
- Based on the commonmark list spec an ordered list can use
Commit Statistics
<csr-read-only-do-not-edit/>
- 14 commits contributed to the release.
- 342 days passed between releases.
- 3 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Thanks Clippy
<csr-read-only-do-not-edit/>
Clippy helped 2 times to make code idiomatic.
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v11.0.0 (
6f23621) - Merge branch 'lic' (
b889953) - Add apache-2 license text to crate as well (
d9eb454) - Add license text (
9ea32f4) - Improve handling of inline code spans with multiple backticks (
c2a0113) - Refactor (
1cd68a4) - Thanks clippy (
8f81a30) - Use necessary amount of backticks for inline code (
3437734) - Always use backticks for inline code blocks (
1e76c95) - Options to choose the ordered list marker and to auto-increment the ordered list numbers. (
2263c2f) - Thanks clippy (
6bde374) - Correct indentation for a nested list in a doc comment (
ce1fb72) - Add option to increment ordered list number (
f2fae4b) - Allow users to specify a custom ordered list marker (
981c86a) </details>
- Release pulldown-cmark-to-cmark v11.0.0 (
-
10.0.410 Sep 2022Release notes
Open source →Bug Fixes
- <csr-id-f3b43705ecf5c3760f964680c2975b14cf92a990/> add newlines where needed to produce valid codeblocks
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 1 day passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #48
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
10.0.309 Sep 2022Release notes
Open source →<csr-id-e214cc1be5305f9b43738affff4d1ca22242af37/>
Bug Fixes
- <csr-id-ff4050f4981f300d79b4d3214bdfe6c3c99ef205/> duplicated shortcut link definitions are only printed once.
Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release.
- 73 days passed between releases.
- 2 commits were understood as conventional.
- 1 unique issue was worked on: #46
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
10.0.228 Jun 2022Release notes
Open source →Fixes
- support for backticks within inline-backticks, see this this comment for details.
Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 108 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
10.0.112 Mar 2022Release notes
Open source →Fixes
- add
cmark_resume(), completing the API transition started with the major version change.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 43 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- add
-
10.0.028 Jan 2022Release notes
Open source →Note that the breaking change is fixable by removing the last parameter from the
cmark()function if it wasNone, or usingcmark_resumeinstead.New Features
- Formatting within links is no being preserved.
New Features (BREAKING)
-
<csr-id-7166abeb0f89ee1dfb7790923d0d5fc6edc394c5/> Simplify
cmark(…)by removingStateparameter, introducecmark_resume(…).The reason for doing it this way around causing a breaking change is the change of behaviour for
cmark_resume, which now returns a state instance that needs afinalize()call to flush certain caches.Currently this is only used to write link blocks, after which the state is still usable for future invocations if necessary.
That way the caller has control over where to put link blocks, or other items that should be placed at the end of a logical section.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release over the course of 28 calendar days.
- 28 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v10.0.0 (
44c5286) - Write changelog prior to release (
e9f809f) - Merge pull request #41 from aogier/bugfix/40-shortcut_code (
7ee11da) - Simplify
cmark(…)by removingStateparameter, introducecmark_resume(…). (7166abe) - Properly render shortcut links w/ code formatting (
6a42312) - Fix changelog (
84acaf3) </details>
- Release pulldown-cmark-to-cmark v10.0.0 (
-
9.0.031 Dec 2021Release notes
Open source →<csr-id-93f2d11e467221418748c672a3c493dcfbf9d6e7/>
Bug Fixes
-
<csr-id-0a6f80d67eed9234170c95d8282cbc76ae66d47c/> Shortcut handling is now using the
State.This makes resumable event processing work as expected, even though the output won't be similar as it will print shortcuts right after all events have been processed and it's impossible to know how often it will be called.
-
Simplify
State.Use an
Optionto get rid ofa boolean and make isuse impossible.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 5 days passed between releases.
- 2 commits were understood as conventional.
- 1 unique issue was worked on: #39
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
-
8.0.026 Dec 2021Release notes
Open source →This release adds support for
pulldown-cmark v0.9, see the tracking issue for more information.Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 21 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
7.1.105 Dec 2021Release notes
Open source →Fixes
- Multiple shortcut links are now separated by newline.
Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 10 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
7.1.025 Nov 2021Release notes
Open source →New Features
- Shortcut links are now printed at the end of the stream like one would expect (#33)
- email links are retained (#34)
- Now 422 of 649 common mark spec tests pass, up from 402.
Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 7 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v7.1.0 (
68a9b6a) - Update changelog (
bbc22fe) - Use match as expression (
2d5d4e1) - Merge branch 'feature/32-shortcut-links' of https://github.com/aogier/pulldown-cmark-to-cmark into aogier-feature/32-shortcut-links (
81b1eb4) - Retain autolink/email link format (
e25f14d) - Shortcut links implementation (
25cc3d1) </details>
- Release pulldown-cmark-to-cmark v7.1.0 (
-
7.0.017 Nov 2021Release notes
Open source →The
Optionstype was updated in a breaking fashion to allow configuring certain tokens, e.g. the*list token can now be configured as-if desired.Thanks to the author of this PR.
Commit Statistics
<csr-read-only-do-not-edit/>
- 7 commits contributed to the release over the course of 53 calendar days.
- 54 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Release pulldown-cmark-to-cmark v7.0.0 (
cc82b0f) - Update changelog prior to release (
0b795a7) - Refactor (
06fe6cb) - More efficient handling of reconfigured characters (
fa14750) - Cleanup typing for special characters (
9aef43f) - Change options to support custom syntax and add test (
db6e12c) - Format with nightly (
9313bac) </details>
- Release pulldown-cmark-to-cmark v7.0.0 (
-
6.0.425 Sep 2021Release notes
Open source →- Improves newline handling when line ends with inline HTML
Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 18 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
6.0.307 Sep 2021Release notes
Open source →- handle spaces in links better
Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 76 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
6.0.223 Jun 2021Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release.
- 19 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
6.0.104 Jun 2021Release notes
Open source →- handline html in tables correctly.
Commit Statistics
<csr-read-only-do-not-edit/>
- 14 commits contributed to the release over the course of 133 calendar days.
- 233 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Thanks Clippy
<csr-read-only-do-not-edit/>
Clippy helped 1 time to make code idiomatic.
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- (cargo-release) version 6.0.1 (
7782189) - Adjust test expectations - it's OK to degenerate information I suppose (
f733496) - Prepare release (
874edba) - Also escape closing brackets (oversight); fixes #25 (
7fdf0da) - Merge remote-tracking branch 'origin/main' into crlf0710/main (
934cfab) - Allow the commonmark-spec test to fail right now… (
65f5949) - Re-enable test-suite :D (
c2a2de3) - Add a test that verify current implementation against all the examples from CommonMark spec. (
f27acce) - Dependency update (
59db24f) - Use
makein CI (4b53d20) - Use modern doc string type links (
cac031a) - Thanks clippy (
16e66da) - Cargo fmt (
9d2dc90) - Add makefile for convenience (
45bfb5e) </details>
- (cargo-release) version 6.0.1 (
-
6.0.013 Oct 2020Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 2 commits contributed to the release over the course of 42 calendar days.
- 73 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
5.0.002 Aug 2020Release notes
Open source →- Allow configuring the amount of backticks used in code blocks. May break code relying on the amount of fields in the configuration struct.
Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 58 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
4.0.205 Jun 2020Release notes
Open source →- Fixed table header handling (see PR for details)
Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release over the course of 9 calendar days.
- 21 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
4.0.115 May 2020Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 2 commits contributed to the release.
- 23 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
4.0.022 Apr 2020Release notes
Open source →- BREAKING: Move all types from
pulldown_cmark_to_cmark::fmt::*intopulldown_cmark_to_cmark::*for simplicity. For most common use-cases, this means that users ofpulldown_cmark_to_cmark::fmt::cmarknow usepulldown_cmark_to_cmark::cmarkinstead.
Commit Statistics
<csr-read-only-do-not-edit/>
- 1 commit contributed to the release.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Simplify library layout: move fmt::* into crate root (
7070f33) </details>
- Simplify library layout: move fmt::* into crate root (
- BREAKING: Move all types from
-
3.0.122 Apr 2020Release notes
Open source →-
support for markdown embedded in HTML tags, like
<article> * list * list **bold** </article>
Commit Statistics
<csr-read-only-do-not-edit/>
- 10 commits contributed to the release over the course of 15 calendar days.
- 82 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Bump patch level; add changelog (
b53fbe5) - Use Rust Edition 2018 QoL improvements (
0b414d0) - Move last_was_html into state definition (allowing resumes) (
59c5a3b) - Add newlines after HTML elemets if followed by more markdown (
fcd32d0) - Bye bye travis, we had a good time (
2ea28f7) - Add github actions (
6b3f51c) - Update minor version of pulldown-cmark (
3e856c9) - Update tests to use new code block kind (
5b1c7c6) - Expose pulldown_cmark dependency to users (
0174671) - Upgrade cmark dependency and handle new code block (
5786f7e) </details>
- Bump patch level; add changelog (
-
-
3.0.006 Apr 2020Nothing published for this version
-
2.0.131 Jan 2020Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 2 commits contributed to the release.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
2.0.031 Jan 2020Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 8 commits contributed to the release.
- 60 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
-
1.2.402 Dec 2019Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release.
- 35 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
1.2.328 Oct 2019Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 3 commits contributed to the release.
- 117 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
1.2.203 Jul 2019Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 2 commits contributed to the release.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
1.2.103 Jul 2019Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 195 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- Uncategorized
- Upgrade to pulldown-cmark 0.4 (
27909e0) - Merge pull request #3 from integer32llc/pulldown-cmark-0.4 (
a92f729) - Add a test that generated markdown parses equivalently (
90f134e) - Update table snapshot to remove whitespace in table cells (
148c789) - Remove trailing spaces from the table test fixture (
c6490bc) - Upgrade to pulldown-cmark 0.4.1 (
9a87b4e) </details>
- Upgrade to pulldown-cmark 0.4 (
-
1.2.020 Dec 2018Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 4 commits contributed to the release over the course of 299 calendar days.
- 310 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
1.1.013 Feb 2018Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 5 commits contributed to the release over the course of 1 calendar day.
- 2 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
-
1.0.011 Feb 2018Release notes
Open source →Commit Statistics
<csr-read-only-do-not-edit/>
- 6 commits contributed to the release.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>