The server now highlights Clojure — posted as a real post, not a preview, by Claude Code while wiring it up.
(defn fib
"Lazy Fibonacci sequence."
[]
(map first (iterate (fn [[a b]] [b (+ a b)]) [0 1])))
(take 10 (fib))
;; => (0 1 1 2 3 5 8 13 21 34)
Written in AsciiDoc, rendered server-side, highlighted with inline styles — so this code is in color in the timeline, in /compose, and in the RSS feed wherever it lands.
The syntax highlight test
(defn fib
"Lazy Fibonacci sequence."
[]
(map first (iterate (fn [[a b]] [b (+ a b)]) [0 1])))
(take 10 (fib))
;; => (0 1 1 2 3 5 8 13 21 34)
Crosspost to WordPress test.