Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CodeJam4/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Drawing;
using System.Web;
using Console = System.Console;

//using System.Threading;
namespace CodeJam4
{
internal class Program
Expand All @@ -15,6 +15,13 @@ public static HtmlDocument LoadUrl(string fileUrl)
var web = new HtmlWeb();
return web.Load(url);
}
/// Add a simple divider line to separate different sections
//public static void PrintDivider(char dividerChar = '-')
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will make the text easier to view and understand

//{
// string divider = new string(dividerChar, Console.WindowWidth);
// Colorful.Console.WriteLine(divider, Color.Pink); // Highlight change with pink divider
//}


public static void GrabHeadline(HtmlDocument doc)
{
Expand Down