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
user=> (-> (s/select (s/child (s/class"subCalender") ; sic
142
-
(s/tag:div)
143
-
(s/id:raceDates)
142
+
(s/tag:div)
143
+
(s/id:raceDates)
144
144
s/first-child
145
-
(s/tag:b))
146
-
site-htree)
145
+
(s/tag:b))
146
+
site-htree)
147
147
first :content first string/trim)
148
148
"10, 11, 12 May 2013"
149
149
```
@@ -182,17 +182,17 @@ There are also selector combinators, which take as argument some number of other
182
182
-`child`: Takes any number of selectors as arguments and returns a selector that returns true when the zipper location given as the argument is at the end of a chain of direct child relationships specified by the selectors given as arguments.
183
183
-`descendant`: Takes any number of selectors as arguments and returns a selector that returns true when the zipper location given as the argument is at the end of a chain of descendant relationships specified by the selectors given as arguments.
184
184
185
-
We can illustrate the selector combinators by continuing the Formula 1 example above. We suspect, to our dismay, that Sebastian Vettel is leading the championship for the fourth year in a row.
185
+
We can illustrate the selector combinators by continuing the Formula 1 example above. We suspect, to our dismay, that Sebastian Vettel is leading the championship for the fourth year in a row.
0 commit comments