mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 06:18:39 +00:00
vendor:cmark -> vendor:commonmark
This commit is contained in:
4
vendor/README.md
vendored
4
vendor/README.md
vendored
@@ -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`.
|
||||
BIN
vendor/cmark/linux/libcmark.a
vendored
BIN
vendor/cmark/linux/libcmark.a
vendored
Binary file not shown.
4
vendor/commonmark/build.bat
vendored
Normal file
4
vendor/commonmark/build.bat
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
pushd W:\Odin-other\Odin-test
|
||||
call build.bat
|
||||
popd
|
||||
@@ -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"
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user