Tidy up Console.WriteLines

This commit is contained in:
Starbeamrainbowlabs 2019-08-05 00:41:35 +01:00
parent 39a068d14b
commit cb4e730f98
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 3 additions and 1 deletions

View File

@ -15,10 +15,12 @@ namespace PolyFeed.Helpers
if (selectedNode == null)
throw new ApplicationException($"Error: Selector {settings.Selector} failed to find any elements.");
// Hack: Add physical newlines to <br />s to make date parsing easier for LastUpdated / Published.
// Also means that we match Firefox functionality.
foreach (HtmlNode nextNode in htmlNode.QuerySelectorAll("br")) {
nextNode.InnerHtml = "\n";
}
Console.WriteLine("InnerText: {0}", selectedNode.InnerText);
if (string.IsNullOrWhiteSpace(settings.Attribute))
return selectedNode.InnerText;