X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=libcitadel%2Flib%2Fhtml_to_ascii.c;h=5ea1e2756623e57c362c6a12b3dcd331b906d36b;hp=9298dd6c7706bc5c071f277924c4a4df53175a37;hb=94849fa2121eef82d797137193a2ee6eac56bc96;hpb=75c253ddeebc3421127d4a1987eecc1150dad51f 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);