CsQuery icon indicating copy to clipboard operation
CsQuery copied to clipboard

CsQuery is a complete CSS selector engine, HTML parser, and jQuery port for C# and .NET 4.

Results 79 CsQuery issues
Sort by recently updated
recently updated
newest added

Hi, is it planed to support .NET Core?

I failed to add it to my UWP project via NuGet. The output says ``` CsQuery 1.3.4 is not compatible with UAP,Version=v10.0. Some packages are not compatible with UAP,Version=v10.0. CsQuery...

Used StringBuilder instead of concatenating string.

I have tried the method numerous times and always returns null even when the ID is in the document, I only want null if its not in the document, I...

Hi, I'm calling this code: CQ dom = CQ.Create( duplicatedResult.StreamToFile, encoding, HtmlParsingMode.Auto, HtmlParsingOptions.IgnoreComments ); The stream of the file (duplicatedResult.StreamToFile) is the downloaded URL: http://docsouth.unc.edu/fpn/green/green.html and getting back this exception:...

Hi, I'm running my code that working with CsQuery and getting this exception: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection....

We've been using CSQuery beta for the last 12 months and it seems to be stable, can you release it please.

``` cs var html = ""; var cs = new CsQuery.CQ(html, CsQuery.HtmlParsingMode.Fragment, CsQuery.HtmlParsingOptions.AllowSelfClosingTags, CsQuery.DocType.XHTML); cs.Render(); ``` Expected result: ``` html ``` Result: ``` html ``` This should be valid representation...

Is there a way to select an attribute directly using a CSS selector? For instance, Scrapy supports this using pseudo-elements: http://doc.scrapy.org/en/0.24/topics/selectors.html#using-selectors You could have a CSS selector "a #myLink::href" to...

Hey, nice work. I like this project more than HtmlAgilityPack, I am still scarred by xPath. I was using latest CsQuery, and tried to use query which is a long...