Blockquotes are now rendered to console as dim instead of italic
[citadel.git] / libcitadel / lib / html_to_ascii.c
index c57a5020e88b5d9cd9b458acdb3a2b473ebab879..ca2de8df8d9e7b0eb756ca1a7186a16d5f571641 100644 (file)
@@ -236,7 +236,7 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int ansi)
                                        ++blockquote;
                                        strcpy(nl, "\n");
                                        if ( (blockquote == 1) && (ansi) ) {
-                                               strcat(nl, "\033[2m\033[3m");
+                                               strcat(nl, "\033[2m\033[2m");
                                        }
                                        for (j=0; j<blockquote; ++j) strcat(nl, ">");
                                        strcat(outbuf, nl);
@@ -246,7 +246,7 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int ansi)
                                        strcat(outbuf, "\n");
                                        --blockquote;
                                        if ( (blockquote == 0) && (ansi) ) {
-                                               strcat(outbuf, "\033[22m\033[23m");
+                                               strcat(outbuf, "\033[22m\033[22m");
                                        }
                                        strcpy(nl, "\n");
                                        for (j=0; j<blockquote; ++j) strcat(nl, ">");