-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: upgrade to pulldown-cmark v0.10
This comes with a variety of changes to the `State` type, 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).
- Loading branch information
Showing
12 changed files
with
333 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
## with class {.classh2} | ||
|
||
### multiple {#myh3 .classh3} | ||
|
||
# text { #id .class1 .class2 myattr, other_attr=myvalue } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ Ordered lists: | |
1. dolor sit amet | ||
1. Nested | ||
|
||
1. With | ||
1. With | ||
Paragraphs and nested blocks: | ||
|
||
> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# nothing | ||
|
||
# with ID {#myh1} | ||
# with ID { #myh1 } | ||
|
||
## with class {.classh2} | ||
## with class { .classh2 } | ||
|
||
### multiple {#myh3 .classh3} | ||
### multiple { #myh3 .classh3 } | ||
|
||
# text { #id .class1 .class2 myattr, other_attr=myvalue } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
*emphasized* | ||
|
||
</div> | ||
|
||
<div> | ||
second line | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ Ordered lists: | |
1. dolor sit amet | ||
1. Nested | ||
|
||
1. With | ||
1. With | ||
Paragraphs and nested blocks: | ||
|
||
> | ||
|
Oops, something went wrong.