microtiny v2.0.3 alters code (cmsms v2.1.2)
Posted: Fri Feb 05, 2016 9:38 pm
On a new install of cmsms v2.1.1 updated to v2.1.2 I set up a test page using bootstrap. On one page I copied the code of the bootstrap accordion example into the source code window of microtiny, clicked OK.
In this example there is this tag:
After opening the source code window again, this tag is changed to:
As anyone can see microtiny removed the attributes role="button", aria-expanded="true" as well as aria-controls="collapseOne" and reordered the other attributes.
Why behaves microtiny like this? Why doesn't leave microtiny the code as it is?
In this example there is this tag:
Code: Select all
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Collapsible Group Item #1
</a>
Code: Select all
<a href="#collapseOne" data-toggle="collapse" data-parent="#accordion"> Collapsible Group Item #1 </a>
Why behaves microtiny like this? Why doesn't leave microtiny the code as it is?