Skip to content

Commit 439b76d

Browse files
committed
Fix missing markup escape (#18)
1 parent 225fdc1 commit 439b76d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ultra/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,14 @@ await AnsiConsole.Live(statusTable.Table)
266266

267267
options.ProgramLogStdout = (text) =>
268268
{
269-
statusTable.LogText(text);
269+
statusTable.LogText(Markup.Escape(text));
270270
statusTable.UpdateTable();
271271
liveCtx.Refresh();
272272
};
273273

274274
options.ProgramLogStderr = (text) =>
275275
{
276-
statusTable.LogText(text);
276+
statusTable.LogText(Markup.Escape(text));
277277
statusTable.UpdateTable();
278278
liveCtx.Refresh();
279279
};

0 commit comments

Comments
 (0)