aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2022-04-09update links (source.virtual-assembly.org is gone)masterJonas Smedegaard
2020-07-01README: improve reference to fork diffJonas Smedegaard
2020-07-01README: link to diff of forkJonas Smedegaard
2020-07-01README: comment out npm packageJonas Smedegaard
2020-07-01fork README and LICENSEJonas Smedegaard
2019-05-28Add documentation of the npm package to README.md.John MacFarlane
Thanks to Shawn Erquhart.
2018-03-06Update README.md (#523)Christoph Päper
two empty lines no longer end any list context (unfortunately)
2017-11-16Remove one word from readme. (#508)Kare Morstol
2017-09-24Update GitHub linksMorten Piibeleht
It appears that the repositories have been moved to a GitHub organization. This fixes the links to CommonMark, cmark and commonmark.js repositories.
2016-03-16Add closing paranthesis to README.mdJosh Olson
2016-01-10New format for spec tests, new lua formatter for specs.John MacFarlane
The format for the spec examples has changed from . markdown . html . to ```````````````````````````````` example markdown . html ```````````````````````````````` One advantage of this is that `spec.txt` becomes a valid Markdown file. `tests/spec_test.py` has been changed to use the new format. The old `tools/makespec.py` has been replaced by a lua program, `tools/make_spec.lua`, which uses the `lcmark` rock (and indirectly libcmark). It can generate html, latex, and commonmark versions of the spec. Pandoc is no longer needed for the latex/PDF version. And, since the new program uses the cmark API and operates directly on the parse tree, we avoid certain bad results we got with the regex replacements done by the python script.
2015-12-21consistent usage of we instaed of Irenzo
2015-07-28Clarified build requirements for spec.html, spec.pdf.John MacFarlane
2015-03-16Small rewording.John MacFarlane
2015-03-16Added link to list of implementations on wiki.John MacFarlane
2015-02-04Use try.commonmark.org for dingus address.John MacFarlane
2015-01-25Fixed license in READMEJohn MacFarlane
2015-01-25Fixed link to spec.John MacFarlane
2015-01-24Removed implementation-specific parts of README.md.John MacFarlane
2015-01-24Added note on documentation in man pages.John MacFarlane
2015-01-24Merge pull request #297 from nwellnhof/makefile_fixesJohn MacFarlane
Makefile fixes
2015-01-24Removed JS implementation, which is moving to its own repo:John MacFarlane
<https://github.com/jgm/commonmark.js>
2015-01-24Pass INSTALL_PREFIX to cmakeNick Wellnhofer
This allows to install to a location other than /usr/local without invoking cmake manually.
2015-01-22Fixed Xcode install example.John MacFarlane
Closes #294.
2015-01-15README.md: refer to js/README.md for details on JS implementation.John MacFarlane
2015-01-12Improved README.John MacFarlane
2015-01-12Moved python, rb, lua wrappers to wrappers subdirectory.John MacFarlane
2015-01-06Fixed typo in README.mdZhiming Wang
2014-12-18Remove stray characterPeter Eisentraut
2014-12-17Fix links to the specMax Lincoln
All the links the spec were broken. I changed `http://jgm.github.io/CommonMark/spec.html` to `http://spec.commonmark.org/0.13/`. It'd be nice if there was a `http://spec.commonmark.org/latest/` so you don't need to change the README every time a new version (unless there's major changes so the URL fragments aren't valid anymore. The spec itself has some broken fragment links, e.g. `#image` instead of `#images`. Unfortunately I don't have a good tool that checks fragments so I don't have the full list.
2014-12-03Added note on lua wrapper.John MacFarlane
2014-12-03Revised README's instructions on tests.John MacFarlane
2014-12-01README: Document where the binaries are placed.John MacFarlane
2014-12-01Added src/scanners.c to repository.John MacFarlane
This reduces build dependencies and should help avoid issues like
2014-11-29Updated path for spec_test.py.John MacFarlane
2014-11-27Renamed runtests.py -> spec_tests.py.John MacFarlane
2014-11-24Build instructions for MSVC/NMAKENick Wellnhofer
2014-11-23README: Added note about --dump-tests.John MacFarlane
2014-11-22Added an Authors section to README.John MacFarlane
2014-11-18Added python version of test runner.John MacFarlane
This tests the dynamic library when run without a second argument. The code makes use of an amended version of the normalization method from karlcow/markdown-testsuite. Closes #161.
2014-11-18Fix to #205 that doesn't require raw HTML.John MacFarlane
2014-11-18Fix display of triple-backtick to be cross-rendererJess Telford
GitHub Flavored Markdown (where this README.md is rendered) was showing the triple tick as <code> </code>\`<code> </code>. This fixes it to correctly display 3 backtick characters when rendered. Tested in reference implementation, Github, and dillinger.io
2014-11-17Put benchmarks in separate benchmarks.md file.John MacFarlane
2014-11-17Improved 'make bench'.John MacFarlane
2014-11-16Removed tarball target; replaced with archive, which also builds zip.John MacFarlane
2014-11-14Added instructions for cross-compiling windows binary.John MacFarlane
2014-11-14Fix some links in the README (stmd -> CommonMark for the Git repo)Thiht
2014-11-12Better installation instructions.John MacFarlane
2014-11-12Added note on using the library from python or ruby.John MacFarlane
2014-11-12Documented more Makefile targets.John MacFarlane