weavejester / hiccup

Fast library for rendering HTML in Clojure
http://weavejester.github.io/hiccup
Eclipse Public License 1.0
2.68k stars 174 forks source link

Meta tag not nested inside parent #150

Closed arichiardi closed 6 years ago

arichiardi commented 6 years ago

Hi all :smile:

Maybe I am doing something silly here, but the following code:

[:div.ui.centered.main.stackable.reverse.grid.container (merge {:role "content"} body-attr-map)
  [:meta {:itemprop "name"}]

  [:div.twelve.wide.column
     "<!-- Content -->"
     content
     "<!-- End Content -->"]

     "<!-- Sidebar -->"
     (sidebar all-tags recent-posts active-tags)
     "<!-- End Sidebar -->"]

Produces the following (with my big surprise):

2017-12-29-161516_1380x230_scrot

The first tag is closing right before the meta, while I would expect it to be including it.

Am I doing something wrong? Is there some setting in order to workaround this?

arichiardi commented 6 years ago

This is a visualization problem of the Developer Tools only, the html is fine. Sorry for the noise!