summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-03 09:00:48 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-03 09:00:48 -0800
commitcfb756f918aad3ef7714f75a06210e564ecb90f9 (patch)
tree727121091c3d7d32b30344b526266e7abdd0c37c /README.md
parentab68771467427229e629d1d2524e054bd45e859a (diff)
Added note on lua wrapper.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 38b9d00..8db4c1f 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,9 @@ standalone program `cmark` that converts CommonMark to HTML. It is
written in standard C99 and has no library dependencies. The parser is
very fast (see [benchmarks](benchmarks.md)).
-It is easy to use `libcmark` in python or ruby code: see `wrapper.py`
-and `wrapper.rb` in the repository for simple examples.
+It is easy to use `libcmark` in python, lua, ruby, and other dynamic
+languages: see `wrapper.py`, `wrapper.lua`, and `wrapper.rb` in the
+repository for simple examples.
The JavaScript implementation is a single JavaScript file, with
no dependencies, that can be linked to in an HTML page. Here