How can I keep HTML Tidy from converting PHP short tags when used as values in html attributes?
Here's an example of what it currently does. It converts this:
<input value='<?=$variable?>'>
to this:
<input value='<?=$variable?>'>
I want HTML Tidy to ignore PHP short tags. Any config options that change this?
==
To simplify, is there a way to have HTML Tidy just avoid doing HTML entity conversion? If it would just not convert < and >, that would solve my problem.