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