summaryrefslogtreecommitdiff
path: root/wrapper.py
blob: f20aac6b8d66d6971a0501b791eb6ca7941803c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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())