Stop rewriting my code
Is there an easy / simple way to make Dreamweaver stop rewriting my code?
I have an input, it looks like this:
<cfinput type="text" id="txtIID" name="txtIID" value="#txtIID#" class="form-control" disabled="#isDisabled#">
The file saves fine as is with that proper format, but when I close the file and open it back up again, Dreamweaver rewrites that input to look like this:
<cfinput type="text" id="txtIID" name="txtIID" value="#txtIID#" class="form-control" disabled>
This might not be an issue if I had just the one. I could probably rewrite it by hand each time. Unfortunately there are about 4 dozen inputs on the page.
I've already looked into Dreamweaver's Preferences/ Code rewriting and Linting options and those don't seem to have an affect upon this issue.
Is there somewhere else I should be looking to turn off this behavior?
