Hello,
Is it possible to handle ".webp" animated images in project page (like it's already handled for GIFs ?)
I tried this HTML code but "picture" tag seems to be rewritten.
<picture> <source srcset="https://www.gstatic.com/webp/gallery/4.webp" type="image/webp"> <source srcset="https://img.itch.zone/aW1nLzU5MTkwNzcuZ2lm/original/d51xeE.gif" type="image/gif"> <img src="https://img.itch.zone/aW1nLzU5MTkwNzcuZ2lm/original/d51xeE.gif" alt="Alt Text"> </picture>
(Why am I using webp format? This format is smaller and thus pages could be loaded more quickly. Especially for GIF files which can be large and lossy. Optimizing loading time could help SEO.)
Thanks !