show: escape angle brackets

This commit is contained in:
N. Engelhardt 2023-06-20 11:17:12 +02:00
parent 25954715f0
commit 22c9237716
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ struct ShowWorker
str += "╲"; str += "╲";
continue; continue;
} }
if (ch == '"') if (ch == '"' || ch == '<' || ch == '>')
str += "\\"; str += "\\";
str += ch; str += ch;
} }