diff --git a/markdown.h b/markdown.h index 95753a0..5b62dc1 100644 --- a/markdown.h +++ b/markdown.h @@ -23,7 +23,7 @@ enum { MKD_NOLINKS=0, /* don't do link processing, block tags */ MKD_EXPLICITLIST, /* don't combine numbered/bulletted lists */ MKD_CDATA, /* generate code for xml ![CDATA[...]] */ MKD_NOSUPERSCRIPT, /* no A^B */ - MKD_STRICT, /* conform to Markdown.pl behavior */ + MKD_STRICT, /* conform to Markdown standard as implemented in Markdown.pl */ MKD_NOTABLES, /* disallow tables */ MKD_NOSTRIKETHROUGH, /* forbid ~~strikethrough~~ */ MKD_1_COMPAT, /* compatibility with MarkdownTest_1.0 */ diff --git a/mkdio.h.in b/mkdio.h.in index d8ffa0e..8686fa4 100644 --- a/mkdio.h.in +++ b/mkdio.h.in @@ -20,7 +20,7 @@ enum { MKD_NOLINKS=0, /* don't do link processing, block tags */ MKD_EXPLICITLIST, /* don't combine numbered/bulletted lists */ MKD_CDATA, /* generate code for xml ![CDATA[...]] */ MKD_NOSUPERSCRIPT, /* no A^B */ - MKD_STRICT, /* emphasis happens /everywhere/ */ + MKD_STRICT, /* conform to Markdown standard as implemented in Markdown.pl */ MKD_NOTABLES, /* disallow tables */ MKD_NOSTRIKETHROUGH, /* forbid ~~strikethrough~~ */ MKD_1_COMPAT, /* compatibility with MarkdownTest_1.0 */