In the meantime, you could just do a regex search and replace to get all of the same errors:
Find: <img (.*?) width="(.*?)%"/>
Replace: <img \1 width="\2"/>
That should fix them all. The error comes from the % sign is no longer a thing for inline image styling.
|