aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-09-01 23:44:38 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2022-09-01 23:44:38 +0200
commitc39b1a31db09f008af173cc0615bf94bd6f4480d (patch)
tree1e7fb6bf7ecac9619a3d11ada062ba9a5606b703
parent635c7fa153fc52d9ee575cc7a788996ac3f10193 (diff)
vendor:cmark -> vendor:commonmark
-rw-r--r--vendor/README.md4
-rw-r--r--vendor/cmark/linux/libcmark.abin600944 -> 0 bytes
-rw-r--r--vendor/commonmark/LICENSE (renamed from vendor/cmark/LICENSE)0
-rw-r--r--vendor/commonmark/build.bat4
-rw-r--r--vendor/commonmark/cmark.odin (renamed from vendor/cmark/cmark.odin)2
-rw-r--r--vendor/commonmark/cmark_static.lib (renamed from vendor/cmark/cmark_static.lib)bin855878 -> 855878 bytes
-rw-r--r--vendor/commonmark/doc.odin (renamed from vendor/cmark/doc.odin)6
7 files changed, 10 insertions, 6 deletions
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
--- a/vendor/cmark/linux/libcmark.a
+++ /dev/null
Binary files differ
diff --git a/vendor/cmark/LICENSE b/vendor/commonmark/LICENSE
index c87c7a615..c87c7a615 100644
--- a/vendor/cmark/LICENSE
+++ b/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
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
index ee733d87c..ee733d87c 100644
--- a/vendor/cmark/cmark_static.lib
+++ b/vendor/commonmark/cmark_static.lib
Binary files differ
diff --git a/vendor/cmark/doc.odin b/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