gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 21:34:50 25 4
gpt4 key购买 nike

我希望我的程序输出以下 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>

关于clojure - 如何在 Compojure/Hiccup 中输出 HTML 注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2905321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com