ConsoleTables
ConsoleTables copied to clipboard
Possibility To Add Divider Row
- I'd love to see the possibility to add visual dividers as "row data".
- Perhaps a method AddDividerRow()
- Hmm, on second thought, perhaps with an optional 'divider character' parameter: AddDividerRow('=')
I second this request.
ATM, this is how I overcome it:
table.AddRow('-', '-', '-', '-', '-', '-');
var finalTable = Regex.Replace(table.ToMarkDownString(), @" \-\s+", m => new string('-', m.Length));