Webjeda
Crunch your Jekyll HTML to negligible size!

Crunch your Jekyll HTML to negligible size!

Jekyll minify html using liquid! Minifying CSS and JS is already in practice but compressing html is not practiced by everyone. Since Jekyll posts and pages are in markdown and you may not be able to minify all of them using a task runner. Learn how to minify Jekyll html using this method.

Why do we have to minify HTML?

Speed is a factor to rank high in Google search page. Minifying HTML can lead to an increase in speeds around 5% or more. Lighter the website easier to load even on a slow connection. Usually, html file consists of a lot of empty spaces, comments in between , new lines, blank spaces etc., It is good to keep what really matters and omit the rest.

Though minifying CSS and JS is largely practiced, minifying HTML is not given such an importance. Maybe because there is not much to minify compared to static files like CSS and JS. But it does help loading your website at a better speed even on 2G connections. Moreover, PageSpeed recommends minifying HTML.

I have seen huge benefits by minifying my Jekyll blog. What if I tell you that minifying reduces the file size by more than 20%! May be because I have a lot of blank spaces and new lines in the un-minified version. And that’s an improvement I shouldn’t be missing.

How to minify Jekyll html?

So far in my tutorials, I have never used command line interface. Not that I hate it but I think it’s difficult for beginners to comprehend. Likewise, you can minify html using Grunt or Gulp task runners but for a beginner they might seem alien technologies. And when we are using an automatic minifier that takes care of everything then why do we need a task runner?! And also I prefer solutions that does not involve plugins.

Now to minify Jekyll blog,

Step 1: Download Compress html

Go to this link and download the compress.html file. It should be under the Installation heading.

Step 2: Place Compress in layouts

Place this html file inside your _layout folder.

Step 3: Add front matter to default layout

Open default.html in _layouts folder and copy the below front matter at the top of the page. If you do not have default.html then use a top level layout which is used in all pages.

---
layout: compress
---

The default.html should look something like this after copying the code

---
layout: compress
---

<!DOCTYPE html>
<html>
.
.
.

</html>

Step 4: Save changes

Save and commit the changes. By default the compress layout replaces contiguous whitespace with a single whitespace character. But if you want additional options then you can use this snippet inside your _config.yml file.

compress_html:
    clippings: []
    comments: []
    endings: []
    ignore:
    envs: []
    blanklines: false
    profile: false
    startings: []

Read all about these settings in the documentation.

Now all your web-pages that directly or indirectly uses the layout default will be minified. You can exclusively mention for certain pages to minify by adding the front matter given above.

So I hope this tutorial helped you minify your Jekyll blog. If there is a better way to do this, then please let me know in the comment section.

My disqus comment stopped loading after using this method. So for the time being I’m not using it. If you are using disqus then do not use this method (for now).

Disqus started to work after cleaning up unnecessary comments inside disqus.html. Here is the raw file

Thanks for reading!


Tweet this article

tweet this post

Also read