Optimise loading times with a custom font subset
The problem
Custom fonts cause flashing text in Firefox. For a gif and more details, see this issue.
The solution
To fix this, tabi loads a subset of glyphs for the header. Since this (slightly) increases the initial load time, it’s a good idea to try and minimise the size of this subset.
By default, there are subset files for English and Spanish characters (with a few symbols). These files are loaded when the Zola page/site is set to that language.
For further optimisation, you can create a custom font subset that only includes the characters used in your header.
Requirements
Install these tools:
Run pip install fonttools brotli
to install both.
The script
The script below takes a config.toml
file and a font file as input, extracts the necessary characters, creates a subset of the font, and generates a CSS file containing the base64 encoded subset.
#!/usr/bin/env bash
# Default output is current directory.
output_path="."
# Parse command line options
while [; do
done
# Check if -c and -f options are provided
if [; then
fi
if [; then
fi
# Check if config and font files exist.
if [; then
fi
if [; then
fi
# Extract the title and menu names from the config file.
title=
menu_names=
language_names=
# If the site is multilingual, get the menu translations.
if [; then
for; do
# Find the line with the menu name inside a [languages.*.translations] section and get the translated menus.
menu_translation=
# Add the found menu value to the translations string
menu_names+=""
done
fi
# Combine the extracted strings.
combined=""
# Get unique characters.
unique_chars=
# Create a temporary file for subset.woff2.
temp_subset=
# Create the subset.
# Remove trailing slash from output path, if present.
output_path=
# Base64 encode the temporary subset.woff2 file and create the CSS file.
base64_encoded_font=
# Remove the temporary subset.woff2 file.
Usage
Save the script somewhere like ~/bin/subset_font
. Make it executable with chmod +x ~/bin/subset_font
.
Now you can run it with the required --config
and --font
options:
By default, this generates a custom_subset.css
file in the current directory. Use -o
or --output
to specify a different path:
You should place this custom_subset.css
file inside the static/
directory.
Automating with Pre-commit Hook
You might change the title or menu options of your site, making the custom subset no longer useful.
To automate the process of creating this file, you can integrate the script into a Git pre-commit hook that checks for changes in the config.toml
file, runs the script, and stores the resulting CSS file in the static/
directory of your site.
Create a
.git/hooks/pre-commit
file in your Git project, if it doesn’t already exist.Make it executable with
chmod +x .git/hooks/pre-commit
.Add the following code to the file:
# Check if config.toml has been modified.
if | ; then
# Call the subset_font script.
# Add the generated subset.css file to the commit.
fi
Make sure to modify the script to match the path where you stored the subset_font
script. The config and font paths should work fine with tabi’s default setup.
Now, every time you commit changes to your Git project, the pre-commit hook will check for modifications in the config.toml
file and automatically run the subset_font
script to update the custom_subset.css
file.
By the way, if you’re interested in a way to automatically update the date of your Zola posts or compress your PNG files, check out this post.
If you want to use all scripts at once (compressing PNG files, updating the date, and creating the font subset), combine their code into a single .git/hooks/pre-commit
file.