summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-15 23:12:01 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-15 23:12:01 -0800
commit2107a56d58990788cfc40c1ba78e6247d1c4b088 (patch)
treeea24f3a38639222050e385ad027cea201e1b37b1 /README.md
parent9a1291b4d751d8533a56911d41b2596fa95eaf85 (diff)
README.md: refer to js/README.md for details on JS implementation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 6 insertions, 26 deletions
diff --git a/README.md b/README.md
index 20f6411..4bbac88 100644
--- a/README.md
+++ b/README.md
@@ -18,15 +18,10 @@ very fast (see [benchmarks](benchmarks.md)).
It is easy to use `libcmark` in python, lua, ruby, and other dynamic
languages: see the `wrappers/` subdirectory for some simple examples.
-The JavaScript implementation is a single JavaScript file, with
-no dependencies, that can be linked into an HTML page.
-
-``` javascript
-var reader = new commonmark.DocParser();
-var writer = new commonmark.HtmlRenderer();
-var parsed = reader.parse("Hello *world*");
-var result = writer.render(parsed);
-```
+The JavaScript implementation provides both an NPM package and a
+single JavaScript file, with no dependencies, that can be linked into
+an HTML page. For further information, see the
+[README in the js directory](js/README.md).
**A note on security:**
Neither implementation attempts to sanitize link attributes or
@@ -118,23 +113,8 @@ If you want to use it in a client application, you can fetch
a pre-built copy of `commonmark.js` from
<http://spec.commonmark.org/js/commonmark.js>.
-Or, to build it (this requires `browserify`):
-
- make js/commonmark.js
-
-To run tests for the JavaScript library:
-
- make testjs
-
-To run benchmarks against some other JavaScript converters:
-
- npm install showdown marked markdown-it
- make benchjs
-
-To start an interactive dingus that you can use to try out
-the library:
-
- make dingus
+For further information, see the
+[README in the js directory](js/README.md).
The spec
--------