From: Art Cancro Date: Mon, 24 Sep 2018 19:12:41 +0000 (-0400) Subject: html_to_ascii() - removed display of italics like /this/, bold like *this*, and under... X-Git-Tag: v939~342 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=94849fa2121eef82d797137193a2ee6eac56bc96;hp=75c253ddeebc3421127d4a1987eecc1150dad51f html_to_ascii() - removed display of italics like /this/, bold like *this*, and underline like _this_. It was too distracting. --- 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);