From 3a0eb76108740be683d9e4bd19e841c9f88f8aea Mon Sep 17 00:00:00 2001 From: Justin Mullings Date: Fri, 6 Sep 2024 15:35:47 -0400 Subject: [PATCH] Added comments --- CodeJam4/Program.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CodeJam4/Program.cs b/CodeJam4/Program.cs index 765db50..255b91b 100644 --- a/CodeJam4/Program.cs +++ b/CodeJam4/Program.cs @@ -4,7 +4,7 @@ using System.Drawing; using System.Web; using Console = System.Console; - +//using System.Threading; namespace CodeJam4 { internal class Program @@ -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 = '-') + //{ + // string divider = new string(dividerChar, Console.WindowWidth); + // Colorful.Console.WriteLine(divider, Color.Pink); // Highlight change with pink divider + //} + public static void GrabHeadline(HtmlDocument doc) {