-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from phillmv/update-to-0290gfm2
Update GFM release to `0.29.0.gfm.2`
- Loading branch information
Showing
13 changed files
with
627 additions
and
744 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef CMARK_GFM_VERSION_H | ||
#define CMARK_GFM_VERSION_H | ||
|
||
#define CMARK_GFM_VERSION ((0 << 24) | (29 << 16) | (0 << 8) | 0) | ||
#define CMARK_GFM_VERSION_STRING "0.29.0.gfm.0" | ||
#define CMARK_GFM_VERSION ((0 << 24) | (29 << 16) | (0 << 8) | 2) | ||
#define CMARK_GFM_VERSION_STRING "0.29.0.gfm.2" | ||
|
||
#endif |
Submodule cmark-upstream
updated
18 files
+83 −0 | .github/workflows/ci.yml | |
+1 −1 | CMakeLists.txt | |
+1 −2 | README.md | |
+15 −0 | changelog.txt | |
+360 −640 | extensions/ext_scanners.c | |
+30 −23 | extensions/ext_scanners.re | |
+71 −52 | extensions/table.c | |
+13 −2 | src/blocks.c | |
+14 −4 | src/commonmark.c | |
+23 −0 | src/footnotes.c | |
+2 −0 | src/footnotes.h | |
+40 −19 | src/html.c | |
+69 −11 | src/inlines.c | |
+7 −0 | src/node.h | |
+49 −12 | test/extensions.txt | |
+2 −2 | test/normalize.py | |
+4 −1 | test/pathological_tests.py | |
+103 −6 | test/regression.txt |
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
Oops, something went wrong.