diff --git a/src/gmnlm.c b/src/gmnlm.c

index 07b699134c0c71a20d4780148ad74cb246634549..da99a84580894312ba86b92e6abd02cfdfc80fd4 100644

--- a/src/gmnlm.c

+++ b/src/gmnlm.c

@@ -457,7 +457,6 @@ /* fallthrough */

case GEMINI_PREFORMATTED_END:

continue; // Not used

case GEMINI_PREFORMATTED_TEXT:

- col += fprintf(out, "` ");

if (text == NULL) {

text = tok.preformatted;

}

@@ -494,7 +493,8 @@ col += fprintf(out, " ");

}

break;

case GEMINI_QUOTE:

- col += fprintf(out, "> ");

+ col += fprintf(out, "%s ",

+ browser->unicode ? "┃" : ">");

if (text == NULL) {

text = trim_ws(tok.quote_text);

}