We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f485ee6 commit 2505d0fCopy full SHA for 2505d0f
README.md
@@ -327,4 +327,26 @@ output of pup into a more consumable format.
327
328
## TODO
329
330
-Add more tests!
+Add more selectors:
331
+
332
+```
333
+div > p
334
+div + p
335
336
+p:contains
337
338
+p:empty
339
340
+p:first-child
341
+p:first-of-type
342
+p:last-child
343
+p:last-of-type
344
345
+p:nth-child(2)
346
+p:nth-last-child(2)
347
+p:nth-last-of-type(2)
348
+p:nth-of-type(2)
349
350
+p:only-of-type
351
+p:only-child
352
0 commit comments