md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
git clone https://noulin.net/git/md4c.git
Log | Files | Refs | README | LICENSE

commit a83db2b70212178fa3542531b3bc393d22aa6c08
parent 1bc7f3a84e75620bcce633159295c713be202554
Author: Martin Mitas <mity@morous.org>
Date:   Fri, 14 Jul 2017 16:49:42 +0200

README.md: Minor update.

Diffstat:
MREADME.md | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -88,20 +88,23 @@ some extensions or allowing some deviations from the specification. * With the flag `MD_FLAG_TABLES`, GitHub-style tables are supported. + * With the flag `MD_FLAG_STRIKETHROUGH`, strikethrough spans are enabled + (text enclosed in tilde marks, e.g. '~foo bar~'). + * With the flag `MD_FLAG_PERMISSIVEURLAUTOLINKS` permissive URL autolinks - (not enclosed in '<' and '>') are supported. + (not enclosed in `<` and `>`) are supported. * With the flag `MD_FLAG_PERMISSIVEAUTOLINKS`, ditto for e-mail autolinks. + * With the flag `MD_FLAG_PERMISSIVEWWWAUTOLINKS` permissive WWW autolinks + (without any scheme specified; `http:` is assumed) are supported. + * With the flag `MD_FLAG_NOHTMLSPANS` or `MD_FLAG_NOHTML`, raw inline HTML or raw HTML blocks respectively are disabled. * With the flag `MD_FLAG_NOINDENTEDCODEBLOCKS`, indented code blocks are disabled. - * With the flag `MD_FLAG_STRIKETHROUGH`, strikethrough spans are enabled - (text enclosed in tilde marks, e.g. '~foo bar~'). - ## Input/Output Encoding