Skip to content

Commit cd411fc

Browse files
committed
Add roadmap for attribute selectors
1 parent 59adca0 commit cd411fc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ select(ast, 'paragraph emphasis > text')
3030
- [x] Group selectors: `paragraph, text`
3131
- [x] Universal selector: `*`
3232
- [ ] 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"]`
3338

3439
## API
3540

0 commit comments

Comments
 (0)