summaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Expand)Author
2016-09-27One more cmark_mem useYuki Izumi
2016-06-06cmark: Implement support for custom allocatorsVicent Marti
2016-06-06cmake: Global handler for OOM situationsVicent Marti
2016-05-26Add 2016 to copyrightKevin Burke
2016-04-09Fixed a number of issues relating to line wrapping.John MacFarlane
2016-03-27Merge pull request #118 from nwellnhof/win-eol-fix2John MacFarlane
2016-03-27Set stdin to binary mode on WindowsNick Wellnhofer
2016-03-26Open files in binary modeNick Wellnhofer
2015-12-19Removed bench.h and timing calls in main.cJohn MacFarlane
2015-07-27Use clang-format, llvm style, for formatting.John MacFarlane
2015-07-13Added `CMARK_OPT_SAFE` option and `--safe` command-line flag.John MacFarlane
2015-07-12Added width parameter to render_man.John MacFarlane
2015-07-11Removed dependence on debug.h.John MacFarlane
2015-07-05Added LaTeX renderer.John MacFarlane
2015-06-16Added `CMARK_OPT_VALIDATE_UTF8` option.John MacFarlane
2015-04-19astyle reformatting.John MacFarlane
2015-03-30Modified copyright message with --version.John MacFarlane
2015-03-22Initialize width.John MacFarlane
2015-03-21CommonMark renderer: Added 'width' parameter.John MacFarlane
2015-03-21Added commonmark renderer.John MacFarlane
2015-02-16Rename CMARK_OPT_SMARTPUNCT -> CMARK_OPT_SMART.John MacFarlane
2015-02-16Made 'options' an int rather than a long.John MacFarlane
2015-02-16Move normalization step from main to cmark_parser_finish.John MacFarlane
2015-02-15Added options parameter to cmark_parse_document, cmark_parse_file.John MacFarlane
2015-02-15Moved normalization step from XML renderer to main.John MacFarlane
2015-02-14Added CMARK_OPT_SMARTPUNCT and --smart option.John MacFarlane
2015-01-23Improve version informationNick Wellnhofer
2015-01-07cmark: Add function & option to normalize text nodes.John MacFarlane
2015-01-05Reformatted code consistently with astyle.John MacFarlane
2014-12-31Write to stdout in binary mode on WindowsNick Wellnhofer
2014-12-29Added options parameter to renderers.John MacFarlane
2014-12-28Removed old 'ast' format, now that we have 'xml'.John MacFarlane
2014-12-28Added xml writer, to dump the AST in XML.John MacFarlane
2014-12-13Added cmark_render_man (man page writer).John MacFarlane
2014-12-02Fix EOF detectionNick Wellnhofer
2014-11-30Renamed cmark_parser_push -> cmark_parser_feed.John MacFarlane
2014-11-29Push parser interfaceNick Wellnhofer
2014-11-28Removed cmark_free_nodes from public API.John MacFarlane
2014-11-28Renamed identifiers in public API:John MacFarlane
2014-11-25Replaced cmark_debug_print with cmark_render_ast.John MacFarlane
2014-11-22Make parser accept a char*Nick Wellnhofer
2014-11-22Make render_html return a char*Nick Wellnhofer
2014-11-17Switch cmark_node_inl over to cmark_nodeNick Wellnhofer
2014-11-17Switch cmark_node_block over to cmark_nodeNick Wellnhofer
2014-11-16Free the string returned by html renderer in main program.John MacFarlane
2014-11-16Moved MAX_LINK_LABEL_LENGTH out of public header.John MacFarlane
2014-11-16Probe for stdbool.hNick Wellnhofer
2014-11-16Don't use variable-length arraysNick Wellnhofer
2014-11-16We don't need to include stdbool in the public header.John MacFarlane
2014-11-16cmark_render_html now just returns a regular C string.John MacFarlane