diff --git a/vendor/README.md b/vendor/README.md index b5f7b1e52..1e24b4d0a 100644 --- a/vendor/README.md +++ b/vendor/README.md @@ -136,9 +136,9 @@ See also LICENSE in the `GGPO` directory itself. See also LICENSE in the `botan` directory itself. Includes full bindings as well as wrappers to match the `core:crypto` API. -## CMark +## CommonMark [CMark](https://github.com/commonmark/cmark) CommonMark parsing library. -See also LICENSE in the `cmark` directory itself. +See also LICENSE in the `commonmark` directory itself. Includes full bindings and Windows `.lib` and `.dll`. \ No newline at end of file diff --git a/vendor/cmark/linux/libcmark.a b/vendor/cmark/linux/libcmark.a deleted file mode 100644 index 28214be07..000000000 Binary files a/vendor/cmark/linux/libcmark.a and /dev/null differ diff --git a/vendor/cmark/LICENSE b/vendor/commonmark/LICENSE similarity index 100% rename from vendor/cmark/LICENSE rename to vendor/commonmark/LICENSE diff --git a/vendor/commonmark/build.bat b/vendor/commonmark/build.bat new file mode 100644 index 000000000..1783e4651 --- /dev/null +++ b/vendor/commonmark/build.bat @@ -0,0 +1,4 @@ +@echo off +pushd W:\Odin-other\Odin-test +call build.bat +popd \ No newline at end of file diff --git a/vendor/cmark/cmark.odin b/vendor/commonmark/cmark.odin similarity index 99% rename from vendor/cmark/cmark.odin rename to vendor/commonmark/cmark.odin index 967cdbf1e..313435870 100644 --- a/vendor/cmark/cmark.odin +++ b/vendor/commonmark/cmark.odin @@ -4,7 +4,7 @@ Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer. See LICENSE for license details. */ -package cmark +package commonmark import "core:c" import "core:c/libc" diff --git a/vendor/cmark/cmark_static.lib b/vendor/commonmark/cmark_static.lib similarity index 100% rename from vendor/cmark/cmark_static.lib rename to vendor/commonmark/cmark_static.lib diff --git a/vendor/cmark/doc.odin b/vendor/commonmark/doc.odin similarity index 97% rename from vendor/cmark/doc.odin rename to vendor/commonmark/doc.odin index d33a0aeb3..24f6780f3 100644 --- a/vendor/cmark/doc.odin +++ b/vendor/commonmark/doc.odin @@ -5,13 +5,13 @@ Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer. See LICENSE for license details. */ -package cmark +package commonmark /* Parsing - Simple interface: ```odin - import cm "vendor:cmark" + import cm "vendor:commonmark" hellope_world :: proc() { fmt.printf("CMark version: %v\n", cm.version_string()) @@ -30,7 +30,7 @@ package cmark Parsing - Streaming interface: ```odin - import cm "vendor:cm" + import cm "vendor:commonmark" streaming :: proc() { using cm