to-markdown-table icon indicating copy to clipboard operation
to-markdown-table copied to clipboard

Extension method for generating text output in Markdown table format.

Results 6 to-markdown-table issues
Sort by recently updated
recently updated
newest added

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...