[Archive Information] Escape archive information text.

This commit is contained in:
2023-10-07 16:39:31 +01:00
parent a6acee88d8
commit 3111d3e06f

View File

@@ -33,6 +33,7 @@
using System.Text;
using Aaru.CommonTypes.Interfaces;
using Aaru.Console;
using Spectre.Console;
namespace Aaru.Core;
@@ -49,7 +50,7 @@ public static class ArchiveInfo
imageFormat.GetInformation(filter, encoding, out string information);
AaruConsole.WriteLine(information);
AaruConsole.WriteLine(Markup.Escape(information));
AaruConsole.WriteLine();
}