summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorYuki Izumi <kivikakk@github.com>2017-05-05 18:02:34 +1000
committerJohn MacFarlane <jgm@berkeley.edu>2017-05-05 10:02:34 +0200
commit6313fff5f9482bdc0489dd19bf9c4ff6ed817e71 (patch)
tree7a3b05970662eee284fd70e68d21c49e4fb16e8f /src/main.c
parent12501f1000f592ff67cca98b6733f0bfa3115f9f (diff)
Remove normalize as an option per #190 (#194)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 42cd8b1..9482f68 100644
--- a/src/main.c
+++ b/src/main.c
@@ -32,7 +32,6 @@ void print_usage() {
printf(" --nobreaks Render soft line breaks as spaces\n");
printf(" --safe Suppress raw HTML and dangerous URLs\n");
printf(" --smart Use smart punctuation\n");
- printf(" --normalize Consolidate adjacent text nodes\n");
printf(" --help, -h Print usage information\n");
printf(" --version Print version\n");
}
@@ -99,8 +98,6 @@ int main(int argc, char *argv[]) {
options |= CMARK_OPT_SMART;
} else if (strcmp(argv[i], "--safe") == 0) {
options |= CMARK_OPT_SAFE;
- } else if (strcmp(argv[i], "--normalize") == 0) {
- options |= CMARK_OPT_NORMALIZE;
} else if (strcmp(argv[i], "--validate-utf8") == 0) {
options |= CMARK_OPT_VALIDATE_UTF8;
} else if ((strcmp(argv[i], "--help") == 0) ||