summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2020-05-12Add CI badge.John MacFarlane
2019-03-17Make rendering safe by default.John MacFarlane
Removes CMARK_OPT_SAFE from options. Adds CMARK_OPT_UNSAFE, with the opposite meaning. The new default behavior is to suppress raw HTML and potentially dangerous links. The CMARK_OPT_UNSAFE option has to be set explicitly to prevent this. -------------------------------------------------------- NOTE: This change will require modifications in bindings for cmark and in most libraries and programs that use cmark. -------------------------------------------------------- Closes #239, #273. Borrows heavily from @kivikakk's patch in github/cmark-gfm#123.
2018-08-27Fix appveyor links.John MacFarlane
Closes #251.
2017-11-18README - use commonmark/cmark for appveyor badge.John MacFarlane
2017-11-16Updated travis badges and issue tracker jgm -> commonmark.John MacFarlane
Thanks @mohitsinghs
2017-08-03Update README.md, replace 'make astyle' with 'make format'Nguyễn Thái Ngọc Duy
The former has been replaced by the latter since 62cb38b (Use clang-format, llvm style, for formatting. - 2015-07-27) dòng được
2017-06-27Add Makefile target and harness to fuzz with libFuzzerPhil Turnbull
This can be run locally with `make libFuzzer` but the harness will be integrated into oss-fuzz for large-scale fuzzing.
2017-05-16Add link to Python wrapperPavlo Kapyshin
2017-05-16Prettify languages listPavlo Kapyshin
2017-05-15README: Add link to cmark-scala (#196)Tim Nieradzik
2016-12-06Added 'make newbench'.John MacFarlane
2016-08-09Fix typoPavlo Kapyshin
2016-07-13link fixTsT
2016-02-06Fixed typo in re2c version number.John MacFarlane
See #102.
2016-02-06Require re2c >= 1.14.2.John MacFarlane
Version <= 1.13.7 don't allow the `-8` option. Closes #102.
2015-12-28Removed out-of-date lua wrapper.John MacFarlane
2015-07-14Removed unused ref link defn from README.John MacFarlane
2015-07-13Added `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-05Added 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-17README: added 'make afl' instructions.John MacFarlane
2015-06-17Small changes to README and benchmark files.John MacFarlane
2015-06-07Added 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-28Add link to R bindingsJeroen Ooms
2015-05-13Added link to CommonMarker, ruby wrapper, in docs.John MacFarlane
2015-05-06README: add links to go, perl, haskell wrapper libraries.John MacFarlane
2015-05-06Added build status badges to README.md.John MacFarlane
2015-04-16Added "Standardized" bullet to README.John MacFarlane
2015-04-16Improved README.John MacFarlane
2015-03-21Update README on output formats.John MacFarlane
2015-02-04Use try.commonmark.org for dingus address.John MacFarlane
2015-01-25Fixed license in README.md.John MacFarlane
2015-01-25Fixed link to spec.John MacFarlane
2015-01-24Improved README with note on wrappers.John MacFarlane
2015-01-24Added reference to benchmarks in README.John MacFarlane
2015-01-24Removed non-C related 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