How to avoid HTML1500 Tag cannot be self-closing warning in IE when using embedded svg?
See this question: Are (non-void) self-closing tags valid in HTML5? Basically, HTML5 doesn’t really do self-closing tags. Instead it has void tags, like <br>. This also explains why <script> isn’t self closing when you are using an external js file; <script> isn’t a void element. The SVG you are writing is actually html, so it … Read more