This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-30
Channels
- # aleph (39)
- # announcements (5)
- # babashka (7)
- # beginners (14)
- # biff (1)
- # clj-kondo (7)
- # clojure (38)
- # clojure-chicago (3)
- # clojure-europe (3)
- # clojure-norway (1)
- # clojurescript (8)
- # cursive (17)
- # data-science (6)
- # defnpodcast (3)
- # emacs (4)
- # figwheel-main (1)
- # honeysql (2)
- # hyperfiddle (2)
- # malli (20)
- # missionary (24)
- # off-topic (27)
- # reagent (4)
- # scittle (11)
- # shadow-cljs (51)
- # spacemacs (1)
- # xtdb (2)
is there a babashka script or something to update the latest "installed scittle" in HTML files? Scittle makes it super easy to make small standalone HTML files that have some lines like
<script src="" type="application/javascript"></script>
<script crossorigin src=""></script>
<script crossorigin src=""></script>
<script src="" type="application/javascript"></script>
... and just work. But being able to update dependencies without lots of manual work is also nice!https://cdn.jsdelivr.net/npm/scittle/dist/ gives back the latest so no version required :-)
I'm currently checking in the HTML verbatim, and really like not having a build step (https://github.com/teodorlu/play.teod.eu/tree/88aa0fcdc442698b5af4909e9822197663b0e618/scicloj-libraries/index.html). Latest does indeed work!
is clojure.pprint
not included with scittle?
I was hoping I could display some data quickly with
[:pre
(with-out-str
(pprint data))]