summaryrefslogtreecommitdiff
path: root/src/cmark.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-06-02 16:43:57 +0200
committerGitHub <noreply@github.com>2017-06-02 16:43:57 +0200
commitf3026b816d7a33e62824bd559692422206196c6d (patch)
treede352e5b2375debd533f55defe1990f583786a65 /src/cmark.h
parentf9073827f0e8d9b10fa43852a1f981eda44140c8 (diff)
parentf47c5ec83aacd4fd64de36b1047ff2fced766142 (diff)
Merge pull request #195 from github/revert-194-upstream/remove-normalize
Revert "Remove normalize as an option per #190"
Diffstat (limited to 'src/cmark.h')
-rw-r--r--src/cmark.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmark.h b/src/cmark.h
index 9f6e0c6..d1a65aa 100644
--- a/src/cmark.h
+++ b/src/cmark.h
@@ -568,6 +568,10 @@ char *cmark_render_latex(cmark_node *root, int options, int width);
* ### Options affecting parsing
*/
+/** Legacy option (no effect).
+ */
+#define CMARK_OPT_NORMALIZE (1 << 8)
+
/** Validate UTF-8 in the input before parsing, replacing illegal
* sequences with the replacement character U+FFFD.
*/