ConsoleTableExt
ConsoleTableExt copied to clipboard
A fluent library to print out a nicely formatted table in a console application C#
Suggestion: Ignore special control characters / virtual terminal sequences in row length calculation
## Description Special control characters such as ANSI escape codes are included in calculation of row length (which is determined by string length). This results in table rows appearing larger...
Sorry, I can't figure out, do _ConsoleTableExt_ have any support of multiple lines in cell? Just now as I see, when I try to use the `"first" + Environment.NewLine +...
I like the minimal format, except I find the solid bar for the headers to be difficult to parse the columns. ``` DefaultString DefaultInt32 HiddenString ---------------------------------------- Row 1 1 Hidden...
The [ConsoleTables](https://github.com/khalidabuhakmeh/ConsoleTables) has a nice feature, where `.Configure(o => o.NumberAlignment = Alignment.Right)` sets up automatic right alignment of numbers in the table. Would you consider adding similar mechanism to your...
Appears to be similar or same as the now-closed #25, I reproed on version 3.3. Running this ```cs var tableData = new List // If I change string to object...