scicloj / clay

A REPL-friendly Clojure tool for notebooks and datavis
https://scicloj.github.io/clay/
Eclipse Public License 1.0
134 stars 13 forks source link

in markdown rendering, add missing space-lines which are in-between comment lines #56

Closed daslu closed 9 months ago

daslu commented 9 months ago

https://clojurians.zulipchat.com/#narrow/stream/422115-clay-dev/topic/Enumeration.20separation/near/419421288

The two following namespace examples should be rendered the same:

(ns my-namespace)
;; some text

;; - first point
;; - second
(ns my-namespace)
;; some text
;;
;; - first point
;; - second

edit: fixed example