buttercloud / html2hiccup

HTML to Hiccup converter for Clojure(Script)
Eclipse Public License 1.0
39 stars 3 forks source link

HTML comments should become Clojure comments #3

Open mtnygard opened 3 years ago

mtnygard commented 3 years ago

Minimal test case

<p>
  <!-- This is a comment -->
</p>

outputs

[:p  "<!-- This is a comment -->" ]

The comment was converted into content, which is never the right answer. It would be more helpful to convert it to a Clojure comment, or if that would choke some of the templating systems, just drop the comment altogether.