aboutsummaryrefslogtreecommitdiff
path: root/changelog.c.txt
blob: 03917b1db187e9017b0751f78ad01eaa7aa38fda (plain)
  1. [0.16]
  2.   * Added xml renderer (XML representation of the CommonMark AST,
  3. which is described in `CommonMark.dtd`).
  4. * Reduced size of gperf entity table (Nick Wellnhofer).
  5. * Reworked iterators to allow deletion of nodes during iteration
  6. (Nick Wellnhofer).
  7. * Optimized `S_is_leaf`.
  8. * Added `cmark_iter_reset` to iterator API.
  9. * Added `cmark_consolidate_text_nodes` to API to combine adjacent
  10. text nodes.
  11. * Added `CMARK_OPT_NORMALIZE` to options (this combines adjacent
  12. text nodes).
  13. * Added `--normalize` option to command-line program.
  14. * Improved regex for HTML comments in inline parsing.
  15. * Python is no longer required for a basic build from the
  16. repository.