We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d2400b commit cdbf69aCopy full SHA for cdbf69a
BooleanExpressionParser/Formatters/DisplayFormatter.cs
@@ -69,7 +69,7 @@ public string FormatTruthTable(Ast ast, List<bool[]> table, string label = "Resu
69
horizontalLineTop = $"┏{horizontalLineTop}┳{resultLine}┓";
70
horizontalLineMiddle = $"┣{horizontalLineMiddle}╋{resultLine}┫";
71
horizontalLineBottom = $"┗{horizontalLineBottom}┻{resultLine}┛";
72
- variableRow = $"┃{variableRow}┃[bold]{PadBoth(label, maxResultLength + FinalPadding)}[/]┃";
+ variableRow = $"┃{variableRow}┃[bold]{Markup.Escape(PadBoth(label, maxResultLength + FinalPadding))}[/]┃";
73
74
foreach (bool[] row in table)
75
{
0 commit comments