Skip to content

Commit

Permalink
Update cmark module
Browse files Browse the repository at this point in the history
  • Loading branch information
dacap committed May 8, 2024
1 parent 6f09bde commit a1bd6f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -293,7 +293,7 @@ if(USE_SHARED_CMARK)
find_path(CMARK_INCLUDE_DIRS NAMES cmark.h)
else()
add_definitions(-DCMARK_STATIC_DEFINE)
set(CMARK_LIBRARIES cmark_static)
set(CMARK_LIBRARIES cmark)
endif()

if(REQUIRE_CURL)
Expand Down
2 changes: 1 addition & 1 deletion third_party/cmark
Submodule cmark updated 75 files
+7 −0 .github/dependabot.yml
+94 −57 .github/workflows/ci.yml
+1 −1 .github/workflows/fuzz.yml
+1 −0 .gitignore
+0 −43 .travis.yml
+98 −36 CMakeLists.txt
+28 −17 Makefile
+0 −3 Makefile.nmake
+6 −10 README.md
+9 −4 api_test/CMakeLists.txt
+1 −1 api_test/harness.c
+1 −1 api_test/harness.h
+92 −2 api_test/main.c
+401 −0 changelog.txt
+0 −0 cmake/modules/FindAsan.cmake
+43 −3 data/CaseFolding.txt
+3 −0 fuzz/CMakeLists.txt
+0 −0 fuzz/afl_test_cases/test.md
+75 −0 fuzz/cmark-fuzz.c
+0 −0 fuzz/dictionary
+10 −6 man/make_man_page.py
+1 −1 man/man1/cmark.1
+55 −9 man/man3/cmark.3
+12 −0 shell.nix
+87 −179 src/CMakeLists.txt
+52 −22 src/blocks.c
+8 −77 src/buffer.c
+5 −15 src/buffer.h
+695 −0 src/case_fold.inc
+0 −4,594 src/case_fold_switch.inc
+9 −9 src/chunk.h
+3 −3 src/cmark.c
+39 −7 src/cmark.h
+0 −6 src/cmark_ctype.c
+0 −2 src/cmark_ctype.h
+29 −40 src/commonmark.c
+0 −76 src/config.h.in
+2,049 −2,133 src/entities.inc
+10 −20 src/houdini.h
+19 −8 src/houdini_href_e.c
+12 −5 src/houdini_html_e.c
+35 −14 src/houdini_html_u.c
+14 −10 src/html.c
+120 −91 src/inlines.c
+1 −1 src/iterator.c
+7 −7 src/latex.c
+2 −2 src/libcmark.pc.in
+5 −5 src/main.c
+32 −3 src/man.c
+3 −3 src/node.c
+5 −4 src/node.h
+2 −2 src/references.c
+2 −2 src/references.h
+7 −6 src/render.c
+8 −0 src/render.h
+4,136 −8,377 src/scanners.c
+0 −2 src/scanners.h
+5 −19 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
+109 −76 test/pathological_tests.py
+92 −0 test/regression.txt
+0 −4 test/run-cmark-fuzz
+88 −87 test/spec.txt
+16 −0 test/spec_tests.py
+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 a1bd6f5

Please sign in to comment.