Browse Source

vendor:cmark -> vendor:commonmark

Jeroen van Rijn 2 years ago
parent
commit
c39b1a31db

+ 2 - 2
vendor/README.md

@@ -136,9 +136,9 @@ See also LICENSE in the `GGPO` directory itself.
 See also LICENSE in the `botan` directory itself.
 See also LICENSE in the `botan` directory itself.
 Includes full bindings as well as wrappers to match the `core:crypto` API.
 Includes full bindings as well as wrappers to match the `core:crypto` API.
 
 
-## CMark
+## CommonMark
 
 
 [CMark](https://github.com/commonmark/cmark) CommonMark parsing library.
 [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`.
 Includes full bindings and Windows `.lib` and `.dll`.

BIN
vendor/cmark/linux/libcmark.a


+ 0 - 0
vendor/cmark/LICENSE → vendor/commonmark/LICENSE


+ 4 - 0
vendor/commonmark/build.bat

@@ -0,0 +1,4 @@
+@echo off
+pushd W:\Odin-other\Odin-test
+call build.bat
+popd

+ 1 - 1
vendor/cmark/cmark.odin → vendor/commonmark/cmark.odin

@@ -4,7 +4,7 @@
 	Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer.
 	Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer.
 	See LICENSE for license details.
 	See LICENSE for license details.
 */
 */
-package cmark
+package commonmark
 
 
 import "core:c"
 import "core:c"
 import "core:c/libc"
 import "core:c/libc"

+ 0 - 0
vendor/cmark/cmark_static.lib → vendor/commonmark/cmark_static.lib


+ 3 - 3
vendor/cmark/doc.odin → vendor/commonmark/doc.odin

@@ -5,13 +5,13 @@
 	Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer.
 	Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer.
 	See LICENSE for license details.
 	See LICENSE for license details.
 */
 */
-package cmark
+package commonmark
 
 
 /*
 /*
 	Parsing - Simple interface:
 	Parsing - Simple interface:
 
 
 	```odin
 	```odin
-	import cm "vendor:cmark"
+	import cm "vendor:commonmark"
 
 
 	hellope_world :: proc() {
 	hellope_world :: proc() {
 		fmt.printf("CMark version: %v\n", cm.version_string())
 		fmt.printf("CMark version: %v\n", cm.version_string())
@@ -30,7 +30,7 @@ package cmark
 	Parsing - Streaming interface:
 	Parsing - Streaming interface:
 
 
 	```odin
 	```odin
-	import cm "vendor:cm"
+	import cm "vendor:commonmark"
 
 
 	streaming :: proc() {
 	streaming :: proc() {
 		using cm
 		using cm