public static IQuery <T> Links <T>(ParsedHtml html, Func <string, string, T> selector) => html.Links((href, ho) => selector(href, ho.InnerHtml)) .Select(link => link) .ToQuery();
public static IEnumerable <string> Links(this ParsedHtml html) => html.Links((href, _) => href);