The current image uploading creates markdown like this:
![alt text][1] [1]: https://i.sstatic.net/rstJD.jpg This means that a potentially large image - often the case with our images - is displayed in the post which slows down the page load.
Imgur creates three smaller versions of the image referenced by l, m and s being added to the filename. So in the case above we also get:
https://i.sstatic.net/rstJDl.jpg https://i.sstatic.net/rstJDm.jpg https://i.sstatic.net/rstJDs.jpg What I would like is for the markdown to be changed to this:
[![alt text][1]][2] [1]: https://i.sstatic.net/rstJDl.jpg [2]: https://i.sstatic.net/rstJD.jpg (or something similar). This looks like;
(image stolen from a recent question)
This would use the largest thumbnail as the inline image, thus improved page load times, but create a link to the full sized image so we could see the details if we wanted.
