Automatically generate sheet music images by adding Lilypond blocks to your markdown files. Customize their appearance using Liquid attributes. The plugin caches the images it generates, making auto-regeneration fast.
For complete documentation, see the plugin website.
The plugin requires Lilypond and Inkscape. To use it in a Jekyll site, add
gem 'jekyll-lilypond'
to your Gemfile and
plugins:
- jekyll-lilypond
to your _config.yml
.
Inside the block, write a Lilypond music expression.
{% lilypond alt: "Five notes of the A-minor scale" %}
a b c d e
{% endlilypond %}
The expression can include multiple staves, expressive marks, time and key signature changes, and any of the other notation Lilypond supports within a music expression. For details, see this brief summary in the Lilypond teaching manual or Wikipedia's list of common music expression details.
To make customizations that can't be make within a music expression — for instance, to change the width or height of the score or specify a custom font —
use attributes on the {% lilypond %}
tag. For more information on attributes, see the plugin documentation.
Lilypond runs more slowly than Jekyll, and regenerating every score would create a noticeable lag. This would be especially painful in auto-regenerate mode, which is normally very responsive. To solve this, I cache images. Each Lilypond source file, and each resulting image, has a filename derived from the MD5 hash of the source code. The plugin only compiles a Lilypond source file when the corresponding image does not yet exist.
To force the plugin to regenerate all of the score images for a site, which is sometimes useful for debugging, empty the lilypond_files
directory.
To keep upload size to a minimum, you can also empty the lilypond_files
directory and regenerate the site before deploying. This removes "stale" images
that are no longer in use.
The plugin generates two kinds of code: Lilypond source files, which it uses to generate images, and HTML includes, which appear in the finished page
and contain the img
element and surrounding markup.
To generate both kinds of source code, it uses Liquid templates. Liquid is the native templating language of Jekyll. Just as Jekyll users can write their own templates to create new page layouts, users of this plugin can write their own templates to add simple features and customizations.
As well as allowing customization, using a template to generate Lilypond source avoids the need to repeat boilerplate. For instance, the default Lilypond template begins like this:
\version "2.20.0"
\paper {
indent = 0\mm
short-indent = 0\mm
bottom-margin = 4\mm
oddHeaderMarkup = ##f
evenHeaderMarkup = ##f
oddFooterMarkup = ##f
evenFooterMarkup = ##f
...
}
These settings produce clean output without extraneous marks, headers, footers, or whitespace, but it would be a hassle to retype them in every Lilypond block. Later parts of the template include correct code for setting the page width, font, and so on, which saves the user from needing to remember the somewhat arbitrary syntax for doing those things.
The next thing on my agenda is to generate assets other than images. For instance, Lilypond can generate MIDI files and software synthesizers can generate mp3 audio from MIDI. It would be nice to support those — and, beyond that, to support other workflows that users might think of. (Maybe someone will want to generate video? Or do musical analysis on MIDI files?)
The most flexible way to do all this would be to let users specify workflow steps in a sitewide Rakefile, alongside whatever other deployment and asset-processing tasks they may have specified there. Templates could then specify what sorts of generated files they require, and the plugin could call on Rake to generate those that don't exist.
bundle exec rspec
runs tests. A minimal sample Jekyll site for tests to call on is in spec/fixtures
,
with the interesting details being the sample templates in spec/fixtures/layouts
.