Results 71 comments of Artem Golubin

I've pushed a fix, but It needs more tests since it can alter behaviour for other use cases. Basically, deep extraction was not working when: 1) We start from a...

This is a known issue on the modest side: https://github.com/lexborisov/Modest/issues/86

I think that's because there is no ``. https://github.com/rushter/selectolax/issues/2#issuecomment-355850317

If you know when you have such HTML, just wrap it with ` content `

Hi, I don't think this is possible on my side. Modest library does not have support for it, we need to modify the C parser first. I could be wrong,...

Yeah, it's a good feature, so let's keep the issue open.

Sorry, I don't have time to look at this right now. This is a pretty big task.

I think I can't control it, since `Modest` performs some preprocessing but I can be wrong.

Added limited support for this in 0.2.7. ``` >>> html_parser = HTMLParser('<test>') >>> selector = html_parser.css_first('div') >>> selector.child.html '<test>' >>> selector.child.raw_value b'<test>' ``` This is limited to text nodes only...

> > Added limited support for this in 0.2.7. > > ``` > > >>> html_parser = HTMLParser('<test>') > > >>> selector = html_parser.css_first('div') > > >>> selector.child.html > >...