Commit 0566fa09cf2369cef3ea6b459f3d4fcf3a27d0fc Parent 96c7df6a8480b78ddc2540dd85877487af358ceb Author John MacFarlane <jgm@berkeley.edu> Date Mon, 29 Dec 2014 12:20:19 -0800 Added options parameter to renderers. To keep the API simple and avoid API changes when new options are added, this is just a long integer. Set it by disjoining options that are defined as powers of 2: e.g. `CMARK_HTML_SOURCEPOS | CMARK_HTML_HARDREAKS`. Test options using `&`: `if (options & CMARK_HTML_SOURCEPOS)`. Added `--hardbreaks` and `--sourcepos` command-line options.