You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2020. It is now read-only.
Is your feature request related to a problem? Please describe.
pseudo-elements like :before are considered as children e.g selector: i.flag.us:before
When I wanted whitelist selectors connected with flag icons which are build like one above I
used whitelistPatterns: [/flag/] pattern but it didn't work.
i.flag - selector passed test i.flag.us:before - selector was purged
I had to use: whitelistPatternsChildren: [/flag/]
Describe the solution you'd like
It would be good if such information would be added in documentation, maybe add an example?