File tree Expand file tree Collapse file tree 5 files changed +7
-10
lines changed
Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ common sense styling.
88
99Lein:
1010```
11- [org.clojars.mjdowney/excel-clj "1.3.0 "]
11+ [org.clojars.mjdowney/excel-clj "1.3.1 "]
1212```
1313
1414- [ Getting Started] ( #getting-started )
Original file line number Diff line number Diff line change 1- (defproject org.clojars.mjdowney /excel-clj " 1.3.0 "
1+ (defproject org.clojars.mjdowney /excel-clj " 1.3.1 "
22 :description " Generate Excel documents & PDFs from Clojure data."
33 :url " https://github.com/matthewdowney/excel-clj"
44 :license {:name " Eclipse Public License"
Original file line number Diff line number Diff line change 259259 (open (convert-pdf! (example ) (temp " .pdf" )))
260260
261261 ; ; Expose ordering / styling issues in v1.2.X
262- (quick-open
263- [[" Test"
264- (table
265- (for [x (range 10000 )]
266- {" N" x " N^2" (* x x) " N^3" (* x x x)}))]])
262+ (quick-open {" Test" (table
263+ (for [x (range 10000 )]
264+ {" N" x, " N^2" (* x x), " N^3" (* x x x)}))})
267265
268266 ; ; Ballpark performance test
269267 (dotimes [_ 5 ]
Original file line number Diff line number Diff line change 22 " Prototype features to be included in v2.0.0 -- everything subject to change."
33 {:author " Matthew Downey" }
44 (:require [excel-clj.poi :as poi]
5- [excel-clj.cell :as cell]
65 [clojure.java.io :as io]
76 [clojure.string :as string]
87 [taoensso.encore :as enc])
Original file line number Diff line number Diff line change 5959 workbook :font {:bold true :font-height-in-points 10}))))"
6060 {:author " Matthew Downey" }
6161 (:require [clojure.string :as string]
62- [clojure.reflect :as reflect])
62+ [clojure.reflect :as reflect]
63+ [rhizome.viz :as viz])
6364 (:import (org.apache.poi.ss.usermodel
6465 DataFormat BorderStyle HorizontalAlignment FontUnderline
6566 FillPatternType)
348349 " If one wanted to visualize all of the nested setters & POI objects...
349350 Keep in mind that this requires $ apt-get install graphviz"
350351 []
351- (require '[rhizome.viz :as viz])
352352 (let [param-type (fn [setter] (resolve (first (:parameter-types setter))))
353353 is-setter? (fn [{:keys [name parameter-types]}]
354354 (and (string/starts-with? (str name) " set" )
You can’t perform that action at this time.
0 commit comments