

-
> killer feature: user provided examples
I agree. [Janet](https://janet-lang.org/) (which, coincidentally, has some superficial similarities to Clojure) has something similar at its [JanetDocs site](https://janetdocs.com/).
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
Also check out:
https://github.com/oxalorg/4ever-clojure - clojure exercises in the browser
https://borkdude.github.io/re-find.web/?args=2%20%5B%3Aa%20%... - find clojure functions by example
-
Unclear what "rendering a webpage" entails exactly.
If you want to do frontend development, you can give shadow-cljs a try, the quickstart is pretty quick: https://github.com/thheller/shadow-cljs#quick-start
If you want to just render server-side HTML, something like compojure (HTTP routing) and hiccup (Clojure data -> HTML) is pretty easy and quick to get started with (https://gist.github.com/zehnpaard/2071c3f55ed319aa8528d54d90...).
If you want to generate HTML files to serve with nginx/whatever, you can just use hiccup and `(spit)` the resulting HTML to files on disk.
Related posts
-
build.simple: tools.build without the DIY – install, sign and deploy libraries easily and securely like with Leiningen
-
What I Have Changed My Mind About in Software Development
-
Sharpscript: Lisp for Scripting
-
Playback – Interactive Programming and Print Debugging Reimagined (successor to Ghostwheel's tracing component)
-
Automatic function argument / return value collection