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