Open EverybodyKurts opened 3 years ago
I see that in http://fsprojects.github.io/FSharp.Data/library/HtmlCssSelectors.html#Implemented-and-missing-features it's listed as a todo. Perhaps instead of a general System.Exception
being thrown, a NotImplementedException
is thrown?
For future reference (notably me), the tokenizing process happens in this function:
https://github.com/fsprojects/FSharp.Data/blob/main/src/Html/HtmlCssSelectors.fs#L103
I'm trying to select the first paragraph in a group of sibling paragraphs. According to the MDN nth-child() entry, I should be able to do this using
:nth-child()
.However, this results in a syntax error when using
HtmlDocument.CssSelect
: