I'm currently missing something similar to [document.createComment](http://www.w3schools.com/jsref/met_document_createcomment.asp) from Javascript. Would be great if one could generate HTML comments using something similar like this: #### Elm: ``` elm Html.comment "comment begin", Html.table [][], Html.comment "comment end" ``` #### Produced HTML: ``` html <!-- comment begin --> <table></table> <!-- comment end --> ``` I'm currently try to code an HTML e-mail template, and this would be very handy to support older e-mail clients 🙂 .