diff options
author | Yuki Izumi <kivikakk@github.com> | 2017-05-05 18:02:34 +1000 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-05-05 10:02:34 +0200 |
commit | 6313fff5f9482bdc0489dd19bf9c4ff6ed817e71 (patch) | |
tree | 7a3b05970662eee284fd70e68d21c49e4fb16e8f /src/cmark.h | |
parent | 12501f1000f592ff67cca98b6733f0bfa3115f9f (diff) |
Remove normalize as an option per #190 (#194)
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cmark.h b/src/cmark.h index 6ed7eb0..793fcf4 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -563,10 +563,6 @@ char *cmark_render_latex(cmark_node *root, int options, int width); * ### Options affecting parsing */ -/** Normalize tree by consolidating adjacent text nodes. - */ -#define CMARK_OPT_NORMALIZE (1 << 8) - /** Validate UTF-8 in the input before parsing, replacing illegal * sequences with the replacement character U+FFFD. */ |