1
0
Fork 0
mirror of https://github.com/sbrl/PolyFeed.git synced 2024-06-02 06:43:00 +00:00

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

View file

@ -15,6 +15,10 @@ namespace PolyFeed.Helpers
if (selectedNode == null) if (selectedNode == null)
throw new ApplicationException($"Error: Selector {settings.Selector} failed to find any elements."); 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)) if (string.IsNullOrWhiteSpace(settings.Attribute))
return selectedNode.InnerText; return selectedNode.InnerText;