如何在Compojure / Hiccup中输出HTML注释?

时间:2010-05-25 14:00:17

标签: clojure compojure hiccup

我希望我的程序输出以下HTML:

<!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->

有没有办法用Hiccup输出html评论文字?

2 个答案:

答案 0 :(得分:18)

只需插入它们即可。也许这有点作弊,但它有效...

user=> (html
         [:html
          [:head
           "<!--[if lt IE 8]>"
           [:link {:rel  "stylesheet"
                   :href "../blueprint/ie.css"
                   :type "text/css"
                   :media "screen,projection"}]
           "<![endif]-->"]])
<html><head><!--[if lt IE 8]><link href=\"../blueprint/ie.css\" media=\"screen,projection\" rel=\"stylesheet\" type=\"text/css\" /><![endif]--></head></html>

答案 1 :(得分:3)

你让我很好奇,所以我重新阅读了代码:没有明确的评论功能 - 你必须将其作为字符串文字传递。但你可以这样做:

(defn comment
  "Wrap the supplied HTML in a comment"
  [html]
  (str "<!--" html "-->"))

如果你真的需要这个功能(尽管这很简单)。您始终可以将IE if语句添加为可选参数。