This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-05-04
Channels
- # announcements (1)
- # architecture (7)
- # beginners (44)
- # biff (11)
- # calva (15)
- # cider (5)
- # clerk (9)
- # clj-kondo (20)
- # clj-on-windows (19)
- # clj-yaml (2)
- # cljs-dev (39)
- # clojure (52)
- # clojure-czech (2)
- # clojure-dev (11)
- # clojure-europe (28)
- # clojure-hamburg (10)
- # clojure-hungary (3)
- # clojure-nl (1)
- # clojure-norway (59)
- # clojure-uk (5)
- # clojured (2)
- # clojurescript (33)
- # conjure (2)
- # datahike (1)
- # datomic (5)
- # defnpodcast (5)
- # emacs (18)
- # figwheel (2)
- # funcool (6)
- # graphql (1)
- # hyperfiddle (11)
- # jobs (3)
- # joyride (13)
- # malli (6)
- # music (4)
- # off-topic (45)
- # polylith (11)
- # practicalli (3)
- # rdf (3)
- # releases (1)
- # scittle (8)
- # shadow-cljs (13)
- # specter (2)
- # squint (8)
- # testing (6)
- # tools-deps (21)
- # xtdb (2)
Is there an easy way to generate top level section in clerk? Something along the lines of:
(for [[emoji _] (take 3 (top-emojis))]
(clerk/md (str "### Most " emoji " messages"))
(clerk/table (messages-for-emoji #{emoji})))
Thanks!
The best I’ve managed to come up with so far is :thinking_face::
(clerk/html
[:div
(for [[emoji] (take 3 (top-emojis))]
[:div
(clerk/md (str "### Most " emoji " messages"))
(clerk/table (messages-for-emoji #{emoji}))])])
Thomas Clark had a Clerk appearance in his conj talk as well: https://youtu.be/WXtbndYRqBs?t=1789
👍 3
I came to it via @UPGS9BS0L’s talk https://www.youtube.com/watch?v=xEvkT9YeBQU
not sure if the timestamp applies correctly to the embedded video but should if you click through
Oooh, nice! At first I thought you were planning to change https://clerk.vision/, but I assume this is for local dev and static output. Nice to be able to find documents faster!
yep, for local dev, dogfooding clerk’s RAD primitives, code is in https://github.com/nextjournal/clerk/pull/472
💯 1