mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 21:38:16 +08:00
Fix @ being used in figlet font
This commit is contained in:
@ -35,7 +35,7 @@ internal static class FigletFontParser
|
||||
throw new InvalidOperationException("Unknown index for FIGlet character");
|
||||
}
|
||||
|
||||
buffer.Add(line.Replace(header.Hardblank, ' ').ReplaceExact("@", string.Empty));
|
||||
buffer.Add(line.Replace(header.Hardblank, ' ').TrimEnd('@'));
|
||||
|
||||
if (line.EndsWith("@@", StringComparison.Ordinal))
|
||||
{
|
||||
|
Reference in New Issue
Block a user