: Normally, decoding a large image can "block" the browser from rendering text or other elements. async allows the browser to keep showing the rest of the page while the image is being prepared in the background.
: It tells the browser it can decode the image "off the main thread". <img decoding="async" class="alignnone size-ful...
decoding="async" height="x" loading="lazy" · quarto-dev · ... - GitHub : Normally, decoding a large image can "block"
You likely saw this because adds this attribute to images by default to boost site speed automatically. <img decoding="async" class="alignnone size-ful...
The snippet you provided refers to the attribute, which is a modern web optimization used in tags to improve page performance. What it Does