summaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
2014-11-15Expose lower-level parsing API.John MacFarlane
The new functions cmark_new_doc_parser, cmark_free_doc_parser, cmark_process_line, and cmark_finish allow you to feed lines one by one (possibly from several files) to the parser and call finish when you're done. This is now used in main for mulitple files.
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
`make TIMER=1` to build with timings.
2014-11-13Rename cmark_free_nodes -> cmark_free_blocks.John MacFarlane
2014-11-11Don't include debug.h in any production code.John MacFarlane
It uses some GNU-specific things.
2014-10-24Renamed c program and library stmd -> cmark.John MacFarlane
Also renamed internal library functions accordingly.
2014-10-18Reindented c sources.John MacFarlane
2014-09-15Cleanup external APIsVicent Marti
2014-09-09Rename node_blockVicent Marti
2014-09-09Rename to strbufVicent Marti
2014-09-09ffffixVicent Marti
2014-09-09lolVicent Marti
2014-09-06replace Standard Markdown with CommonMarkPablo Rodríguez
2014-08-13main.c: Fixed reading of files specified on command line.John MacFarlane
2014-08-13Initial commitJohn MacFarlane