File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 invoke specific scripts."
55 (:require
66 [babashka.fs :as fs]
7- [mdr2.pipeline2.core :as dp2 ]))
7+ [mdr2.pipeline2.core :as pipeline2 ]))
88
99(defn validate [input & {:keys [mathml-version check-images] :as opts}]
10- (dp2 /create-job-and-wait " dtbook-validator" {} (merge opts {:input-dtbook input})))
10+ (pipeline2 /create-job-and-wait " dtbook-validator" {} (merge opts {:input-dtbook input})))
1111
1212(defn daisy3-to-epub3 [input & {:keys [mediaoverlays assert-valid] :as opts}]
13- (dp2 /create-job-and-wait " daisy3-to-epub3" {:source input} opts))
13+ (pipeline2 /create-job-and-wait " daisy3-to-epub3" {:source input} opts))
1414
1515(defn epub3-to-daisy202 [input & {:keys [temp-dir output-dir] :as opts}]
16- (dp2 /create-job-and-wait " epub3-to-daisy202" {} (merge {:epub input} opts)))
16+ (pipeline2 /create-job-and-wait " epub3-to-daisy202" {} (merge {:epub input} opts)))
1717
1818(defn daisy3-to-daisy202 [input output-dir]
1919 (let [epub-dir (fs/create-temp-dir " mdr2" )]
You can’t perform that action at this time.
0 commit comments