Bugfix: Add newlines in the place of <br /> tags when finding InnerText

This commit is contained in:
Starbeamrainbowlabs 2019-08-05 00:33:15 +01:00
parent c179a77cc3
commit ffb7318382
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,10 @@ namespace PolyFeed.Helpers
if (selectedNode == null)
throw new ApplicationException($"Error: Selector {settings.Selector} failed to find any elements.");
foreach (HtmlNode nextNode in htmlNode.QuerySelectorAll("br")) {
nextNode.InnerHtml = "\n";
}
Console.WriteLine("InnerText: {0}", selectedNode.InnerText);
if (string.IsNullOrWhiteSpace(settings.Attribute))
return selectedNode.InnerText;