I want to embed an image of this beautiful unicorn.
<img src="http://i.stack.imgur.com/YHnAW.png"/>

Perfect! Now, it's a little too … majestic, so I'd like to make it smaller. Markdown doesn't support it, but we can use HTML, right?
<img width="100" src="http://i.stack.imgur.com/YHnAW.png"/>
… but where's the image? It's just not displayed! Check the source code of this question to see it. So, let's shuffle those attributes around:
<img src="http://i.stack.imgur.com/YHnAW.png" width="100"/>

Now it works! Obviously, the attribute position matters, and the image is just not displayed. As we all know, the position of attributes shouldn't matter, therefore, please make it possible to specify width (and other allowed attributes) anywhere inside the tag.