CsConsoleFormat
CsConsoleFormat copied to clipboard
.NET C# library for advanced formatting of console output [Apache]
I need to generate a table to be used in a fixed lines per page scenario. If the table should continue onto multiple pages, I want to repeat the header...
I need to generate tables in text, but not for writing to the console. Can CsConsoleFormat render to a string or stream, instead of the console?
I've tried using a negative top margin on a block element like this: ``` var div = new Div { Margin = new Thickness(0, -1, 0, 0) }; ``` I've...
Hello, I was able to execute the ConsoleTest application to see how it performed with the new Windows Terminal. It appears you are setting the terminal width prior to rendering...
If I output chinese words,the grid will broken,I think the problem is in the character calculation of Chinese characters. My code is like this: ```C# static void Main(string[] args) {...
In the version 1.0 if foreground or background colors are not specified, the white and black colors are used for them. It looks unnatural if other colors are used in...
Integrate with popular command-line parsers to allow: 1. Zero-effort improvement to formatting of help texts. Should match the original tool's formatting closely, but improve upon it. 2. Easy customization options...
Calling `Console.Write` for every line seems to be unoptimal compared to writing one big block of text. Probably caused by too much interop. See https://github.com/Athari/CsConsoleFormat/issues/21#issuecomment-378329169. Optimize number of API calls...
FluentAssertins is switching from 1.4 back to 1.3 https://github.com/fluentassertions/fluentassertions/issues/779, so we can do to. Should happen on 5.2 release.
[AmmyUI](https://github.com/ammyui/ammyui) supports custom XAML syntax. It's implemented using [Nitra](https://github.com/JetBrains/Nitra). Look into implementing DSL better than XAML, specific to CsConsoleFormat. If Nitra and Nemerle turn out to be unreliable and not...