Change where markdown is processed

This commit is contained in:
oakes
2014-03-31 20:43:49 -04:00
parent c66f75ed92
commit 9f926daec0
2 changed files with 6 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
(ns play-clj-doclet.html
(:require [clojure.string :as string]
[hiccup.core :refer :all]
[markdown.core :as m]))
[hiccup.core :refer :all]))
(defn param
[[type-name param-name]]
@@ -26,7 +25,7 @@
(for [group groups]
[:div
[:h2 {} (:name group)]
(m/md-to-html-string (:docstring group))
(:docstring group)
(for [[name items] (:java group)]
[:div
(when (not= (:name group) name)