summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--man/man3/cmark.312
-rw-r--r--src/cmark.h4
2 files changed, 16 insertions, 0 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3
index c04e442..4cb20d6 100644
--- a/man/man3/cmark.3
+++ b/man/man3/cmark.3
@@ -752,6 +752,18 @@ Options affecting parsing
.nf
\fC
.RS 0n
+#define CMARK_OPT_NORMALIZE (1 << 8)
+.RE
+\f[]
+.fi
+
+.PP
+Legacy option (no effect).
+
+.PP
+.nf
+\fC
+.RS 0n
#define CMARK_OPT_VALIDATE_UTF8 (1 << 9)
.RE
\f[]
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.
*/