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

前端之家收集整理的这篇文章主要介绍了clojure – 如何在Compojure / Hiccup中输出HTML注释?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望我的程序输出以下 HTML
<!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen,projection"><![endif]-->

有没有办法用Hiccup输出html注释文字

解决方法

只需插入它们.也许这有点欺骗,但它的作品…
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>
原文链接:https://www.f2er.com/html/230551.html

猜你在找的HTML相关文章