We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59adca0 commit cd411fcCopy full SHA for cd411fc
README.md
@@ -30,6 +30,11 @@ select(ast, 'paragraph emphasis > text')
30
- [x] Group selectors: `paragraph, text`
31
- [x] Universal selector: `*`
32
- [ ] Attribute selectors: `text[value*="substr"]`
33
+ - [ ] Existence: `[value]`
34
+ - [ ] Equality: `[value="foo"]`
35
+ - [ ] Begins with: `[value^="prefix"]`
36
+ - [ ] Containment: `[value*="substr"]`
37
+ - [ ] Ends with: `[value$="suffix"]`
38
39
## API
40
0 commit comments