This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns graaaph.core | |
(:import (org.jrubyparser Parser | |
CompatVersion) | |
(org.jrubyparser.parser ParserConfiguration) | |
(org.jrubyparser.ast Node) | |
(java.io.StringReader)) | |
(:require [clojure.zip :as z])) | |
(defn parse-ruby [ruby-string] | |
(let [config (ParserConfiguration. 0 (CompatVersion/RUBY1_9)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns willtim.clj-vtd-xml | |
(:import [com.ximpleware VTDGen VTDNav AutoPilot]) | |
(:require | |
[clojure.contrib.duck-streams :as ds])) | |
;; | |
;; Clojure API for VTD-XML | |
;; | |
;; Designed to work like clojure.contrib.zip-filter.xml, e.g. | |
;; |