to-markdown-table
to-markdown-table copied to clipboard
Extension method for generating text output in Markdown table format.
Packages added when adding this nuget to a .net Framework 4.6.1 webforms application included... ``` ``` This seems a little excessive and many of these can't possibly be required by...
Currently the check for numeric types isn't taking into account cases like `Nullable` / `int?`. Playing around a little bit in Linqpad it looks like we should be able to...
Excellent little library overall! here's my linq select ``` tblItemMasters .Select(x => new { x.ITEMNO, Description = x.DESC.Trim(), x.CATEGORY }).Take(100).ToList() .ToMarkdownTable() ``` here's the columns that I get | CATEGORY...