From 2505d0f4b3e87d17c138d7daa2a7fcf649baf212 Mon Sep 17 00:00:00 2001 From: Eric Chiang Date: Sun, 2 Nov 2014 09:21:04 -0500 Subject: [PATCH] Update README.md --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 35ca4a0..afe2205 100644 --- a/README.md +++ b/README.md @@ -327,4 +327,26 @@ output of pup into a more consumable format. ## TODO -Add more tests! +Add more selectors: + +``` +div > p +div + p + +p:contains + +p:empty + +p:first-child +p:first-of-type +p:last-child +p:last-of-type + +p:nth-child(2) +p:nth-last-child(2) +p:nth-last-of-type(2) +p:nth-of-type(2) + +p:only-of-type +p:only-child +```