summaryrefslogtreecommitdiff
path: root/wrappers/wrapper.py
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-12 20:28:17 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-12 20:30:36 -0800
commit292b0bdad1aa79483a7498e72028bbff8134cebb (patch)
treeb7570099b327da3fab64cf77e92052d99416132a /wrappers/wrapper.py
parent5ddf8743f02132f07aad4bb27e0b84c530a706d7 (diff)
Moved python, rb, lua wrappers to wrappers subdirectory.
Diffstat (limited to 'wrappers/wrapper.py')
-rwxr-xr-xwrappers/wrapper.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/wrappers/wrapper.py b/wrappers/wrapper.py
new file mode 100755
index 0000000..52cbfc7
--- /dev/null
+++ b/wrappers/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, c_long
+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, c_long]
+
+def md2html(text):
+ return markdown(text, len(text))
+
+sys.stdout.write(md2html(sys.stdin.read()))