cmark

libcmark wrapper for Nim


Keywords
library, wrapper, cmark, commonmark, markdown, nim, nim-wrapper
License
Apache-2.0
Install
nimble install cmark

Documentation

nim-cmark

libcmark wrapper for Nim.

Installation

nim-cmark requires that libcmark is installed and the shared library is available.

How to install libcmark?

macOS

brew install cmark

Ubuntu

sudo apt install libcmark-dev

Windows

Refer to https://github.com/commonmark/cmark#installing-windows.

Getting Started

import cmark

let markdown = """
# hello

```nim
echo "hello world"
```
"""

echo markdown_to_html(markdown, CMARK_OPT_DEFAULT)

Got output:

<h1>hello</h1>
<pre><code class="language-nim">echo &quot;hello world&quot;
</code></pre>

License

All code is released under the Apache-2.0 license.