I'd like my program to output the following HTML:
<!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
Is there a way to output html comment literals with Hiccup?
|
feedback
|
|
Just insert them. Maybe this is a little bit cheating, but it works...
| |||
|
feedback
|
|
You got me curious, so I re-read the code: there's no explicit comment function - you would have to pass that as a string literal. But you could do something like:
if you really needed the function (although that's pretty simplistic). You could always add the IE if statement as an optional parameter. | ||||
|
feedback
|