Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-13 | link fix | TsT | |
2016-02-06 | Fixed typo in re2c version number. | John MacFarlane | |
See #102. | |||
2016-02-06 | Require re2c >= 1.14.2. | John MacFarlane | |
Version <= 1.13.7 don't allow the `-8` option. Closes #102. | |||
2015-12-28 | Removed out-of-date lua wrapper. | John MacFarlane | |
2015-07-14 | Removed unused ref link defn from README. | John MacFarlane | |
2015-07-13 | Added `CMARK_OPT_SAFE` option and `--safe` command-line flag. | John MacFarlane | |
* Added `CMARK_OPT_SAFE`. This option disables rendering of raw HTML and potentially dangerous links. * Added `--safe` option in command-line program. * Updated `cmark.3` man page. * Added `scan_dangerous_url` to scanners. * In HTML, suppress rendering of raw HTML and potentially dangerous links if `CMARK_OPT_SAFE`. Dangerous URLs are those that begin with `javascript:`, `vbscript:`, `file:`, or `data:` (except for `image/png`, `image/gif`, `image/jpeg`, or `image/webp` mime types). * Added `api_test` for `OPT_CMARK_SAFE`. * Rewrote `README.md` on security. | |||
2015-07-05 | Added LaTeX renderer. | John MacFarlane | |
* New exported function in API: `cmark_render_latex`. * Added src/latex.hs. * Updated README and man page. * Closes #31. | |||
2015-06-17 | README: added 'make afl' instructions. | John MacFarlane | |
2015-06-17 | Small changes to README and benchmark files. | John MacFarlane | |
2015-06-07 | Added benchmark for hoedown. | John MacFarlane | |
Note that hoedown doesn't show the 32/64 bit difference that sundown does -- so it was probably a bug in sundown. Removed the comments from benchmarks.md about this. | |||
2015-05-28 | Add link to R bindings | Jeroen Ooms | |
2015-05-13 | Added link to CommonMarker, ruby wrapper, in docs. | John MacFarlane | |
2015-05-06 | README: add links to go, perl, haskell wrapper libraries. | John MacFarlane | |
2015-05-06 | Added build status badges to README.md. | John MacFarlane | |
2015-04-16 | Added "Standardized" bullet to README. | John MacFarlane | |
2015-04-16 | Improved README. | John MacFarlane | |
2015-03-21 | Update README on output formats. | John MacFarlane | |
2015-02-04 | Use try.commonmark.org for dingus address. | John MacFarlane | |
2015-01-25 | Fixed license in README.md. | John MacFarlane | |
2015-01-25 | Fixed link to spec. | John MacFarlane | |
2015-01-24 | Improved README with note on wrappers. | John MacFarlane | |
2015-01-24 | Added reference to benchmarks in README. | John MacFarlane | |
2015-01-24 | Removed non-C related parts of README.md. | John MacFarlane | |
2015-01-24 | Added note on documentation in man pages. | John MacFarlane | |
2015-01-24 | Merge pull request #297 from nwellnhof/makefile_fixes | John MacFarlane | |
Makefile fixes | |||
2015-01-24 | Removed JS implementation, which is moving to its own repo: | John MacFarlane | |
<https://github.com/jgm/commonmark.js> | |||
2015-01-24 | Pass INSTALL_PREFIX to cmake | Nick Wellnhofer | |
This allows to install to a location other than /usr/local without invoking cmake manually. | |||
2015-01-22 | Fixed Xcode install example. | John MacFarlane | |
Closes #294. | |||
2015-01-15 | README.md: refer to js/README.md for details on JS implementation. | John MacFarlane | |
2015-01-12 | Improved README. | John MacFarlane | |
2015-01-12 | Moved python, rb, lua wrappers to wrappers subdirectory. | John MacFarlane | |
2015-01-06 | Fixed typo in README.md | Zhiming Wang | |
2014-12-18 | Remove stray character | Peter Eisentraut | |
2014-12-17 | Fix links to the spec | Max 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-03 | Added note on lua wrapper. | John MacFarlane | |
2014-12-03 | Revised README's instructions on tests. | John MacFarlane | |
2014-12-01 | README: Document where the binaries are placed. | John MacFarlane | |
2014-12-01 | Added src/scanners.c to repository. | John MacFarlane | |
This reduces build dependencies and should help avoid issues like | |||
2014-11-29 | Updated path for spec_test.py. | John MacFarlane | |
2014-11-27 | Renamed runtests.py -> spec_tests.py. | John MacFarlane | |
2014-11-24 | Build instructions for MSVC/NMAKE | Nick Wellnhofer | |
2014-11-23 | README: Added note about --dump-tests. | John MacFarlane | |
2014-11-22 | Added an Authors section to README. | John MacFarlane | |
2014-11-18 | Added 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-18 | Fix to #205 that doesn't require raw HTML. | John MacFarlane | |
2014-11-18 | Fix display of triple-backtick to be cross-renderer | Jess 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-17 | Put benchmarks in separate benchmarks.md file. | John MacFarlane | |
2014-11-17 | Improved 'make bench'. | John MacFarlane | |
2014-11-16 | Removed tarball target; replaced with archive, which also builds zip. | John MacFarlane | |
2014-11-14 | Added instructions for cross-compiling windows binary. | John MacFarlane | |