-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
complex CSS selectors #8
Comments
+1 for pseudo selectors. I found out that they're not supported when I tried to zebra-stripe a table with |
Also |
I think we should support pseudo selectors. Also any errors should log warning but continue rendering the remaining selectors. These are good improvements to make and I'm sure I'll get to them eventually but I'll also accept pull requests! |
Why is not a bug anymore? It fails to apply even a selector like |
@p-himik , If you have some HTML and CSS that isn't being handled correctly, the most productive thing you can do here is to fork this repository and add a test showing the failure then open a pull request. I'll pull in failing tests if they highlight problems in pynliner so we can fix them. |
Created #46 |
Pynliner currently fails to apply the selector
element#id.class
.Other selectors that fail include adjacent sibling (
a + b
) and child (a > b
) selectors as well as pseudo selectors (not sure if pseudo selectors should be included... thoughts anyone?)The text was updated successfully, but these errors were encountered: