diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:22:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:26:03 -0700 |
commit | abc95bdfa1fd4f4ffb5b0727aec34791a6e472e5 (patch) | |
tree | 41d7aadcb3a91edd0610da1cd85d9c0a1c02fff7 /narrative.md | |
parent | 7f0d1a80c7871a97dcf6495fba9f0e3c8d86be81 (diff) |
Renamed c program and library stmd -> cmark.
Also renamed internal library functions accordingly.
Diffstat (limited to 'narrative.md')
-rw-r--r-- | narrative.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/narrative.md b/narrative.md index 0a86a88..313f831 100644 --- a/narrative.md +++ b/narrative.md @@ -4,13 +4,13 @@ title: CommonMark CommonMark is a [specification of Markdown syntax](http://jgm.github.io/stmd/spec.html), together with -BSD3-licensed implementations (`stmd`) in C and JavaScript. The source +BSD3-licensed implementations (`cmark`) in C and JavaScript. The source for the spec and the two implementations can be found in [this repository](http://github.com/jgm/stmd). The C implementation provides both a library and a standalone program -`stmd` that converts Markdown to HTML. It is written in standard C99 and -has no library dependencies. +`cmark` that converts Markdown to HTML. It is written in standard C99 +and has no library dependencies. The JavaScript implementation is a single JavaScript file, with no dependencies. [Try it now!](http://jgm.github.io/stmd/js/) |