; selects all element children of the context node ; ; Abbreviated XPath: * ; Full XPath: child::* (define tree '(elem (@) (para (@) "para") (br (@)) "cdata" (para "second par")) ) ; Low-level: ((select-kids (ntype?? '*)) tree) ; SXPath: ((sxpath `(*)) tree) ==> ((para (@) "para") (br (@)) (para "second par"))