cmark

My personal build of CMark ✏️

Commit
d7284a7010de7626487061cbe1ac06916a680e9b
Parent
3739c54c9a3ce1f79452548a49f82878868fa6d0
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

Added example wrapper.py.

This shows how to use the shared library from python.

Diffstat

1 file changed, 23 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Added wrapper.py 23 23 0
diff --git a/wrapper.py b/wrapper.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+
+# Example for using the shared library from python
+
+from ctypes import CDLL, c_char_p
+import sys
+import platform
+
+sysname = platform.system()
+
+if sysname == 'Darwin':
+    cmark = CDLL("build/src/libcmark.dylib")
+else:
+    cmark = CDLL("build/src/libcmark.so")
+
+markdown = cmark.cmark_markdown_to_html
+markdown.restype = c_char_p
+markdown.argtypes = [c_char_p]
+
+def md2html(text):
+    return markdown(text, len(text))
+
+print md2html(sys.stdin.read())