Skip to content

Commit

Permalink
build(deps): Bump third_party/cmark from 7195c67 to 15d3928 (#353)
Browse files Browse the repository at this point in the history
Bumps [third_party/cmark](https://github.com/commonmark/cmark) from `7195c67` to `15d3928`.
- [Release notes](https://github.com/commonmark/cmark/releases)
- [Commits](commonmark/cmark@7195c67...15d3928)

---
updated-dependencies:
- dependency-name: third_party/cmark
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 25, 2024
1 parent 779c8c1 commit b424fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/cmark
Submodule cmark updated 65 files
+87 −54 .github/workflows/ci.yml
+1 −1 .github/workflows/fuzz.yml
+5 −0 .gitignore
+80 −22 CMakeLists.txt
+29 −18 Makefile
+0 −3 Makefile.nmake
+6 −8 README.md
+8 −4 api_test/CMakeLists.txt
+76 −6 api_test/main.c
+197 −0 changelog.txt
+0 −0 cmake/modules/FindAsan.cmake
+3 −0 fuzz/CMakeLists.txt
+0 −0 fuzz/afl_test_cases/test.md
+75 −0 fuzz/cmark-fuzz.c
+0 −0 fuzz/dictionary
+12 −12 man/make_man_page.py
+50 −4 man/man3/cmark.3
+83 −190 src/CMakeLists.txt
+46 −16 src/blocks.c
+8 −77 src/buffer.c
+5 −15 src/buffer.h
+695 −0 src/case_fold.inc
+0 −4,714 src/case_fold_switch.inc
+9 −9 src/chunk.h
+33 −1 src/cmark.h
+0 −6 src/cmark_ctype.c
+0 −2 src/cmark_ctype.h
+8 −8 src/commonmark.c
+0 −76 src/config.h.in
+2,049 −2,133 src/entities.inc
+10 −20 src/houdini.h
+11 −0 src/houdini_href_e.c
+12 −5 src/houdini_html_e.c
+34 −13 src/houdini_html_u.c
+14 −10 src/html.c
+55 −35 src/inlines.c
+1 −1 src/iterator.c
+5 −5 src/latex.c
+4 −4 src/main.c
+3 −3 src/man.c
+3 −3 src/node.c
+3 −2 src/node.h
+2 −2 src/references.c
+2 −2 src/references.h
+3 −3 src/render.c
+2 −0 src/render.h
+3,744 −7,963 src/scanners.c
+0 −2 src/scanners.h
+3 −17 src/scanners.re
+183 −72 src/utf8.c
+1 −1 src/utf8.h
+5 −5 src/xml.c
+50 −60 test/CMakeLists.txt
+0 −33 test/cmark-fuzz.c
+34 −8 test/cmark.py
+22 −13 test/pathological_tests.py
+69 −0 test/regression.txt
+0 −4 test/run-cmark-fuzz
+66 −52 test/spec.txt
+96 −0 tools/make_case_fold_inc.py
+55 −15 tools/make_entities_inc.py
+0 −22 tools/mkcasefold.pl
+26 −0 wrappers/wrapper.php
+17 −11 wrappers/wrapper.py
+14 −2 wrappers/wrapper.rb

0 comments on commit b424fc0

Please sign in to comment.