This repository was archived by the owner on Dec 19, 2018. It is now read-only.
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Attribute order from source is not preserved upon rendering #225
Closed
Description
This is annoying. The attributes for elements with Tag Helpers defined do not have their order preserved from the source CSHTML. They appear to be rendered in alphabetical order instead.
<input type="submit" value="Log in" class="btn btn-default" />
becomes
<input class="btn btn-default" type="submit" Value="Log in" />