diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-24 21:35:03 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-24 21:39:07 -0800 |
commit | 829b089c80895d9a78938c5bc7747aea1cd48eb6 (patch) | |
tree | 53bd534741a90c547c5d87039efa5ee625da8081 /wrappers/wrapper.py | |
parent | 5ef31853d5161d4b5a2dfc0df94e6eaaeb3215d0 (diff) |
Removed implementation-specific material from repository.
The C and JS implementations are being split off into
different repositories.
This repository will just have the spec itself.
Diffstat (limited to 'wrappers/wrapper.py')
-rwxr-xr-x | wrappers/wrapper.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/wrappers/wrapper.py b/wrappers/wrapper.py deleted file mode 100755 index 52cbfc7..0000000 --- a/wrappers/wrapper.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/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())) |