Then in my JavaScript file I defer them till page load:
function DeferLoadImages() {
var imgDefer = document.getElementsByTagName('img');
for (var i=0; i<imgDefer.length; i++) {
if(imgDefer[i].getAttribute('data-lazy-src')) {
imgDefer[i].setAttribute('src',imgDefer[i].getAttribute('data-lazy-src'));
}
}
}
DeferLoadImages();
How can I do this in Hugo? Itās an important feature for me, but on the forum or in the documentation I couldnāt find how.
Edit: Just to clarify, Iām not asking how to do this HTML or JavaScript wise. Iām looking for a way so that Hugo converts the MarkDown image so that it has the required tags needed for defer loading (width, height, custom src like data-lazy-src, and the <noscript> version).
Thanks Blenderman and Bep, a shortcode is the way to go; now my images are loaded after the browser has processed the HTML and CSS, which makes the website feel quicker. Itās pretty amazing how versatile Hugo is once you know how to approach a problem/challenge.
By the way, how can I in the above shortcode include the .BaseURL variable? I get errors of Site is not a field of struct type *hugolib.ShortcodeWithPage for several versions of this variable ($.Site.BaseURL, .Site.BaseURL, .BaseURL).
If I may suggest a docs enhancement: is it perhaps an idea to create a tree-like overview of the different variables? In this case, for example, I would not have thought of $.Page.Site.BaseURL since with that Site is a subset of Page, which is counter-intuitive given how the variables normally work.
I write programming tutorials on my website, trying to convert the technical to the understandable. So Iām definitely interested in helping (and already thought about it). But unfortunately, I donāt know enough about Hugo yet to explain it well.