gitextract_v70alebj/ ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── COPYING ├── Makefile ├── Makefile.nmake ├── Package.swift ├── README.md ├── api_test/ │ ├── CMakeLists.txt │ ├── cplusplus.cpp │ ├── cplusplus.h │ ├── harness.c │ ├── harness.h │ └── main.c ├── appveyor.yml ├── bench/ │ ├── samples/ │ │ ├── block-bq-flat.md │ │ ├── block-bq-nested.md │ │ ├── block-code.md │ │ ├── block-fences.md │ │ ├── block-heading.md │ │ ├── block-hr.md │ │ ├── block-html.md │ │ ├── block-lheading.md │ │ ├── block-list-flat.md │ │ ├── block-list-nested.md │ │ ├── block-ref-flat.md │ │ ├── block-ref-nested.md │ │ ├── inline-autolink.md │ │ ├── inline-backticks.md │ │ ├── inline-em-flat.md │ │ ├── inline-em-nested.md │ │ ├── inline-em-worst.md │ │ ├── inline-entity.md │ │ ├── inline-escape.md │ │ ├── inline-html.md │ │ ├── inline-links-flat.md │ │ ├── inline-links-nested.md │ │ ├── inline-newlines.md │ │ ├── lorem1.md │ │ └── rawtabs.md │ ├── statistics.py │ └── stats.py ├── benchmarks.md ├── bin/ │ └── main.c ├── changelog.txt ├── cmake/ │ └── modules/ │ ├── CheckFileOffsetBits.c │ ├── CheckFileOffsetBits.cmake │ └── FindAsan.cmake ├── cmark-gfm-config.cmake.in ├── data/ │ └── CaseFolding.txt ├── extensions/ │ ├── CMakeLists.txt │ ├── autolink.c │ ├── autolink.h │ ├── core-extensions.c │ ├── ext_scanners.c │ ├── ext_scanners.h │ ├── ext_scanners.re │ ├── include/ │ │ ├── cmark-gfm-core-extensions.h │ │ └── module.modulemap │ ├── strikethrough.c │ ├── strikethrough.h │ ├── table.c │ ├── table.h │ ├── tagfilter.c │ ├── tagfilter.h │ ├── tasklist.c │ └── tasklist.h ├── fuzz/ │ ├── CMakeLists.txt │ ├── README.md │ ├── fuzz_quadratic.c │ ├── fuzz_quadratic_brackets.c │ └── fuzzloop.sh ├── man/ │ ├── CMakeLists.txt │ ├── make_man_page.py │ ├── man1/ │ │ └── cmark-gfm.1 │ └── man3/ │ └── cmark-gfm.3 ├── nmake.bat ├── src/ │ ├── CMakeLists.txt │ ├── arena.c │ ├── blocks.c │ ├── buffer.c │ ├── case_fold_switch.inc │ ├── cmark.c │ ├── cmark_ctype.c │ ├── commonmark.c │ ├── config.h.in │ ├── entities.inc │ ├── footnotes.c │ ├── houdini_href_e.c │ ├── houdini_html_e.c │ ├── houdini_html_u.c │ ├── html.c │ ├── include/ │ │ ├── buffer.h │ │ ├── chunk.h │ │ ├── cmark-gfm-extension_api.h │ │ ├── cmark-gfm.h │ │ ├── cmark-gfm_config.h │ │ ├── cmark-gfm_version.h │ │ ├── cmark_ctype.h │ │ ├── export.h │ │ ├── footnotes.h │ │ ├── houdini.h │ │ ├── html.h │ │ ├── inlines.h │ │ ├── iterator.h │ │ ├── map.h │ │ ├── module.modulemap │ │ ├── mutex.h │ │ ├── node.h │ │ ├── parser.h │ │ ├── plugin.h │ │ ├── references.h │ │ ├── registry.h │ │ ├── render.h │ │ ├── scanners.h │ │ ├── syntax_extension.h │ │ └── utf8.h │ ├── inlines.c │ ├── iterator.c │ ├── latex.c │ ├── libcmark-gfm.pc.in │ ├── linked_list.c │ ├── man.c │ ├── map.c │ ├── node.c │ ├── plaintext.c │ ├── plugin.c │ ├── references.c │ ├── registry.c │ ├── render.c │ ├── scanners.c │ ├── scanners.re │ ├── syntax_extension.c │ ├── utf8.c │ └── xml.c ├── suppressions ├── test/ │ ├── CMakeLists.txt │ ├── afl_test_cases/ │ │ └── test.md │ ├── cmark-fuzz.c │ ├── cmark.py │ ├── entity_tests.py │ ├── extensions-full-info-string.txt │ ├── extensions-table-prefer-style-attributes.txt │ ├── extensions.txt │ ├── fuzzing_dictionary │ ├── normalize.py │ ├── pathological_tests.py │ ├── regression.txt │ ├── roundtrip_tests.py │ ├── run-cmark-fuzz │ ├── smart_punct.txt │ ├── spec.txt │ └── spec_tests.py ├── toolchain-mingw32.cmake ├── tools/ │ ├── Dockerfile │ ├── appveyor-build.bat │ ├── make_entities_inc.py │ ├── mkcasefold.pl │ ├── xml2md.xsl │ └── xml2md_gfm.xsl ├── why-cmark-and-not-x.md └── wrappers/ ├── wrapper.js ├── wrapper.py ├── wrapper.rb ├── wrapper.rkt └── wrapper_ext.py