I’m moving a conversation from the timeline over here for posterity and easier code sharing.
Is it possible to automatically use Micro.blog’s image scaling feature for all my images? Right now, there’s a lot of manual labor prepending https://micro.blog/photos/600x/to each image URL.
So Gunnar wants all his image URLs prefixed with https://micro.blog/photos/600x/ automatically. And that’s possible! But you have to use Markdown syntax when adding images in your posts. Markdown syntax looks like this:
But thanks to Hugo and something called Markdown Render Hooks we can override that behavior and render whatever we want. In this case, Gunnar wants HTML like this:
Enter the following path and filename layouts/_default/_markup/render-image.html. Naming is important, make sure it’s correct.
As content, paste the code snippet below and then click Update Template.
You’re done! Give your site time to rebuild. From now on, all images embedded with Markdown syntax should have the https://micro.blog/photos/600x/ prefix.
Content of layouts/_default/_markup/render-image.html:
This is a bare-bones example. There are a lot of bells and whistles you could potentially add, like support for width and height attributes, lazy loading, and so on.
Thank you @sod! My first one: - gunnar.se
And 173 KB is a lot better than 2.6 MB. And you get the full image if you click it.
Money is in the bucket at Stripe Checkout
For another example of this, I implemented render hooks a while back in the glightbox plugin. I originally defaulted to using thumbnails, but ultimately didn’t like the quality that came out of Micro.blog’s resizing.
This is great! By the way, wherever you use a URL like “micro.blog/photos/…” you can replace it with “cdn.micro.blog/photos/…” and it will automatically cache the image in the content-delivery network, for faster serving around the world.
It scales the image at the provided URL to be 600 px wide. The original photo@g posted above is 1800 px wide, so adding the prefix will reduce the file size quite a lot. You can change 600x to any value that suits your needs. Or not use this at all, if you have no use for scaled down images.
My 2 cents, it’s usually a good idea to have the size be at least 2x what you expect most people to view it as, so it looks nicer on modern phone screens that are high resolution. The Micro.blog timeline currently defaults to scaling down to 1000 pixels wide. The client apps usually resize to 1800 pixels before uploading, then add a width tag of 600 making it roughly 3x the display size, but it’s not an exact science with so many different screen sizes.