I've got a pretty complicated DOM structure already and I'd like to eliminate the possibility of unterminated image elements causing issues.
Looking at the simplest case:
var prettyPicture = document.createElement("img");
//Add properties...
container.appendChild(prettyPicture );
Works fine, but when I insepct the dom I see the img element without a terminating slash such as <img/>
<img id="iamge-6816177" src="_site/images/detail/6816177.png">
No issues in the simple layout view, but when I look at a view with tons of these elements, random ones, even similar images within the same parent nodes do not render, though their nodes are in the dom inspector. Would missing termination cause any issues with the tree?

