; selects the 'para' element descendants of the context node ; ; Abbreviated XPath: form: .//para ; Full XPath: descendant::para (define tree '(elem (@ (name "elem") (id "idz")) (para (@) "para") (br (@)) "cdata" (para "second par") (div (@ (name "aa")) (para (@) "third para"))) ) ; Low-level: ((node-closure (ntype?? 'para)) tree) ; SXPath: ((sxpath `(// para)) tree) ==> ((para (@) "para") (para "second par") (para (@) "third para"))