summaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Expand)Author
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
2014-11-15Expose lower-level parsing API.John MacFarlane
2014-11-14Added some includes of buffer.hJohn MacFarlane
2014-11-13Moved the timing macros to get finer-grained information.John MacFarlane
2014-11-13Added bench.h and inserted timing macros in main.John MacFarlane
2014-11-13Rename cmark_free_nodes -> cmark_free_blocks.John MacFarlane
2014-11-11Don't include debug.h in any production code.John MacFarlane
2014-10-24Renamed c program and library stmd -> cmark.John MacFarlane
2014-10-18Reindented c sources.John MacFarlane
2014-09-15Cleanup external APIsVicent Marti
2014-09-09Rename node_blockVicent Marti