summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-06New Racket wrapper.Eli Barzilay
Has an almost complete low-level interface, mostly missing the iterator thing. Also some higher-level interface: some thin convenient wrappers, and conversions to/from sexpr format.
2015-05-04Better solution for memory leak in `cmark_consolidate_text_nodes`.John MacFarlane
This avoids allocating a new string. Closes #32.
2015-05-04Straightforward fix for memory leak #32.John MacFarlane
2015-05-04Improved 'make leakcheck'.John MacFarlane
* We now return an error status if anything in the loop fails. * We now check --smart and --normalize options.
2015-04-29Updated spec.txt.John MacFarlane
2015-04-28Updated changelog.txt.John MacFarlane
2015-04-28Updated spec.John MacFarlane
2015-04-27Bump version to 0.19.0.John MacFarlane
2015-04-27Fixed _ emphasis parsing to conform to spec.John MacFarlane
See jgm/CommonMark#317.
2015-04-27Updated spec.txt.John MacFarlane
2015-04-26Merge pull request #29 from nwellnhof/static_library_flagsJohn MacFarlane
Compile static library with -DCMARK_STATIC_DEFINE
2015-04-26Suppress warnings about Windows runtime library filesNick Wellnhofer
Visual Studio Express editions do not include the redistributable files. Set CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS to suppress warnings.
2015-04-26Compile static library with -DCMARK_STATIC_DEFINENick Wellnhofer
Fixes warnings on Windows.
2015-04-26Appveyor - use 64-bit python.John MacFarlane
Maybe this will help with the dll load failure?
2015-04-26Use os.path.join in test/cmark.py.John MacFarlane
For proper cross-platform paths.
2015-04-26Makefile.nmake fixes.John MacFarlane
Removed echo, pushd, popd.
2015-04-26Fixed spec location in Makefile.nmake.John MacFarlane
2015-04-26appveyor - use nmake for build and test.John MacFarlane
2015-04-26Appveyor - don't cd in test_script.John MacFarlane
We're already in the build directory after build_script.
2015-04-25appveyor - removed pushd/popdJohn MacFarlane
2015-04-25appveyor - add python to pathJohn MacFarlane
2015-04-25Revert "CMakeLists.txt: quote variable to avoid warning."John MacFarlane
This reverts commit 890a926dec02d8f024a4492248dbff4f84d37ff2. Conflicts: src/CMakeLists.txt
2015-04-25Really fixed cmake warning.John MacFarlane
2015-04-25CMakeLists.txt: quote variable to avoid warning.John MacFarlane
2015-04-25appveyor.yml - set up for using nmake.John MacFarlane
2015-04-25Fixed typo in build script for appveyorJohn MacFarlane
2015-04-25Fixed appveyor build_scriptJohn MacFarlane
2015-04-25Fixed tabs in appveyor.ymlJohn MacFarlane
2015-04-25Tried build_script in appveyor.ymlJohn MacFarlane
2015-04-25Added build_script to appveyorJohn MacFarlane
2015-04-25Trying configuration in appveyor.ymlJohn MacFarlane
2015-04-25Made environment a mapping in appveyor.yamlJohn MacFarlane
2015-04-25Fixed yaml error in appveyor.ymlJohn MacFarlane
2015-04-25Added appveyor.ymlJohn MacFarlane
2015-04-19astyle reformatting.John MacFarlane
2015-04-18Added to afl_dictionary.John MacFarlane
2015-04-18make afl: use afl_dictionary, raise timeout for hangs.John MacFarlane
2015-04-18Added test/afl_dictionary.John MacFarlane
2015-04-16Merge pull request #28 from nwellnhof/accept_unicode_noncharsJohn MacFarlane
Pass-through Unicode non-characters
2015-04-16Added "Standardized" bullet to README.John MacFarlane
2015-04-16Improved README.John MacFarlane
2015-04-16Pass-through Unicode non-charactersNick Wellnhofer
Despite their name, Unicode non-characters are valid code points. They should be passed through by a library like libcmark.
2015-04-15Check return status of utf8proc_iterate. Closes #27.John MacFarlane
If unicode parsing gives an error condition, we just skip the rest of the string without rendering anything and proceed. I'm not sure if that's the best way to handle this, but garbage in, garbage out. Note: this bug was found using american fuzzy lop.
2015-04-14Added afl to .PHONY in Makefile.John MacFarlane
2015-04-07Check length before reading.Ben Trask
2015-04-07Try to match existing style better.Ben Trask
2015-04-07Bug fixes for CRLF support.Ben Trask
2015-04-07Hacks to spec_tests.py to test CRLF support.Ben Trask
2015-04-07Fix regression in remove_trailing_blank_lines().Ben Trask
2015-04-07Add CRLF/CR handling to inlines.c.Ben Trask