TextFormat

This commit is contained in:
2023-08-16 19:21:50 +02:00
parent cbbf7b3704
commit 3c996f0c20
31 changed files with 304 additions and 94 deletions

View File

@@ -0,0 +1,13 @@
using TerminalUI.ConsoleDrivers;
namespace TerminalUI.TextFormat;
public readonly struct EmptyFormat : ITextFormat
{
public static EmptyFormat Instance => new();
public bool CanApply(TextFormatContext context) => true;
public void ApplyFormat(IConsoleDriver consoleDriver, TextFormatContext context)
{
}
}