We are using Umbraco as the CMS for our website. Umbraco uses tinymce as a rich text editor for populating rich content. The issue is that whenever we add images via the media picker on tinymce the image is inserted with a width and height parameters padded to src tag. The example is below:
<img style="width: 500px; margin: 0px auto; max-width: 100%;" src="/media/9693/whatever.jpg?width=500&height=333.33333333333337" alt="Whatever" height="" title="Whatever">
This creates problem when we try to add the page url (with this image) on a Facebook status update. The images with the padded width and height to src tag doesn't show up in the list of images Facebook generates.
What do I need to do so that tinymce doesn't add the "?width=500&height=333.33333333333337" part to the image src?
