Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

clojurescript - How to pretty print a Clojure data structure in HTML?

How to make the following code generate a similar visualization to pprint in HTML?

(let [clj-structure {:ui {:selected #{[:A 3]}}                                                                                       
                           :domain                                                                                                         
                           {:C {0 {:value 12}}                                                                                             
                            :D {0 {:dependants [[:C 0]] :string "3" :value "3"}                                                            
                                1 {:dependants [[:C 0]] :string "4" :value "4"}}                                                           
                            :E {2 {:dependants [] :string "2" :value "2"}                                                                  
                                3 {:dependants [] :string "10" :value "10"}}}}]                                                            
        [:p (str clj-structure)])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
(let [clj-structure {:ui {:selected #{[:A 3]}}                                                                                       
                           :domain                                                                                                         
                           {:C {0 {:value 12}}                                                                                             
                            :D {0 {:dependants [[:C 0]] :string "3" :value "3"}                                                            
                                1 {:dependants [[:C 0]] :string "4" :value "4"}}                                                           
                            :E {2 {:dependants [] :string "2" :value "2"}                                                                  
                                3 {:dependants [] :string "10" :value "10"}}}}]                                                            
        [:pre (with-out-str (cljs.pprint/pprint clj-structure))])

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...