From 94849fa2121eef82d797137193a2ee6eac56bc96 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 24 Sep 2018 15:12:41 -0400 Subject: [PATCH] html_to_ascii() - removed display of italics like /this/, bold like *this*, and underline like _this_. It was too distracting. --- libcitadel/lib/html_to_ascii.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libcitadel/lib/html_to_ascii.c b/libcitadel/lib/html_to_ascii.c index 9298dd6c7..5ea1e2756 100644 --- a/libcitadel/lib/html_to_ascii.c +++ b/libcitadel/lib/html_to_ascii.c @@ -197,6 +197,9 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth) { strcat(outbuf, nl); } +/**** + These seemed like a good idea at the time, but it just makes a mess. + else if ( (!strcasecmp(tag, "B")) || (!strcasecmp(tag, "/B")) @@ -204,7 +207,6 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth) { || (!strcasecmp(tag, "/STRONG")) ) { strcat(outbuf, "*"); - } else if ( @@ -214,7 +216,6 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth) { || (!strcasecmp(tag, "/EM")) ) { strcat(outbuf, "/"); - } else if ( @@ -222,8 +223,8 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth) { || (!strcasecmp(tag, "/U")) ) { strcat(outbuf, "_"); - } +****/ else if (!strcasecmp(tag, "BR")) { strcat(outbuf, nl); -- 2.30.2