This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-03-12
Channels
- # beginners (4)
- # boot (58)
- # braid-chat (9)
- # cider (19)
- # clojure (26)
- # clojure-austin (8)
- # clojure-berlin (1)
- # clojure-poland (2)
- # clojure-russia (238)
- # clojurescript (22)
- # core-async (2)
- # cursive (6)
- # datomic (32)
- # emacs (5)
- # hoplon (1)
- # jobs (10)
- # keechma (1)
- # ldnclj (2)
- # off-topic (5)
- # om (7)
- # onyx (4)
- # proton (1)
- # re-frame (10)
- # reagent (5)
- # ring-swagger (10)
ie: like reagent.core/render-to-string
but instead of generating html, show me the hiccup of my nested components?
@smw: the “rendered” hiccup? a brute way to do it would be to feed the result from render-to-string
into hickory or similar...
@escherize: I presume he means he wants a way to convert [my-component]
into (say) [:div {:class “my-component"} [:span “Hello”] [:span “world”]]
(or whatever the component actually generates).