cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit d5936353392a17ae6bac3303d506a7e79855da2d
parent 4c12342bcad95cdc44f9107161429524226a2d37
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 20 Sep 2020 23:13:30 -0400

Swap quote character to >

Diffstat:
Msrc/gmnlm.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/gmnlm.c b/src/gmnlm.c @@ -322,12 +322,9 @@ repeat: } break; case GEMINI_QUOTE: + col += fprintf(out, "> "); if (text == NULL) { - col += fprintf(out, " %s ", - browser->unicode ? "|" : "|"); text = trim_ws(tok.quote_text); - } else { - col += fprintf(out, " "); } break; }