This extension for PerrysNetConsole generates from the console application output a fancy HTML file.
This project is also available as nuget Package.
using (var writer = new CoExHtmlWriter() { Title = "A fancy demo" })
{
CoEx.WriteTitleLarge("A fancy demo");
CoEx.WriteLine();
CoEx.WriteTable(tabledata);
writer.SaveAs(target);
}