In the case where this HTML is entered into the Kendo editor:
<p style="text-indent:24px">Some text</p>
I can see in the body of the editor that the style is unchanged. However, when I get the HTML back from the editor without making any changes (typing or other button functions) using the kendoEditor value() function, the style is changed to this:
<p style="text-indent: 24px;">Some text</p>
A space has been injected after the colon, and a semicolon has been appended to the end of the style.
This is not a breaking change by any means, but the problem becomes that when I compare the HTML to the initial HTML, it is now different, and it may be difficult to determine if this was an intended user change or not.
What is the best practice to determine what is an actual user change vs. a system change that modified/normalized the HTML in some way? Is it possible to know all the modifications that may be made to the HTML by the editor?
Thanks for any insight,
Bob
