Fixed section-to-html to correctly put code sections into the second cell.

This commit is contained in:
Nicolas Buduroi 2011-11-13 19:15:57 -05:00
parent e3b54c8695
commit 582972f777

View file

@ -105,9 +105,9 @@
(if (= (:type section) :comment)
(:raw section)
(:docstring section)))]
[:td {:class "codes"}] (if (= (:type section) :code)
[:td {:class "codes"} (if (= (:type section) :code)
(codes-to-html (:raw section))
"")]))
"")]]))
(defn dependencies-html [deps & header-name]
(when-let [deps (seq deps)]