(defn text "Returns the text value of a node." {:tag String} [node] (cond (string? node) node (xml/tag? node) (apply str (map text (:content node))) :else ""))
Comments top
No comments for text. Log in to add a comment.