This is an 11ty plugin to render accessible footnotes using Liquid.
Notes:
- This plugin makes no styling consideration whatsoever. Refer to the FAQ for more information about styling.
- Check out my own site’s repository for a real life usage of this plugin.
Install the dependency from npm:
npm install eleventy-plugin-footnotes
Update your 11ty configuration:
const footnotes = require('eleventy-plugin-footnotes')
module.exports = eleventyConfig => {
eleventyConfig.addPlugin(footnotes, { /* … */ })
}
The plugin can be somewhat configured. Refer to the customisation section for a complete look at the settings.
-
Wrap a text section with the
footnoteref
Liquid tag while making sure to pass it anid
as first argument, and the footnote content as a second argument. See example. -
Render the footnotes section at the bottom of the article layout (or where you feel like) using the
{% footnotes %}
shortcode.
Something about {% footnoteref "css-counters", "CSS counters are, in essence, variables maintained by CSS whose values may be incremented by CSS rules to track how many times they’re used." %}CSS counters{% endfootnoteref %} that deserves a footnote explaining
what they are.
Note that footnotes accept HTML, so you can inject any markup you want in there. If you would like to use Markdown (or any other filters of your choice), you could extract the footnote in a variable before:
{% assign css_counters_footnote = "[CSS counters](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters) are, in essence, variables maintained by CSS whose values may be incremented by CSS rules to track how many times they’re used." | markdown | replace: "<p>", "" | replace: "</p>", "" %}
Something about {% footnoteref "css-counters" css_counters_footnote %}CSS counters{% endfootnoteref %} that deserves a footnote explaining
what they are.
Note that if the footnote content (2nd argument) is omitted entirely (willingly or by mistake), the footnote reference will not be rendered as an anchor at all since there is nothing to link to.
-
title
: Thetitle
option is the content of the title of the footnotes section. This title can be visually hidden if desired but it should not be removed or emptied. -
titleId
: ThetitleId
option is theid
set to the title of the footnotes section. It is also referred in thearia-describedby
attribute of every footnote reference. -
backLinkLabel
: ThebackLinkLabel
option is a function resolving thearia-label
of the back link of every footnote. It is important it differs from back link to back link. -
baseClass
: ThebaseClass
option is used as the base class for all the other BEM classes (<base>__ref
,<base>
,<base>__title
,<base>__list
,<base>__list-item
,<base>__back-link
). -
classes
: Custom class names map for each element rendered by the plugin, in case you want to apply some additional utility classes. Note that if you specifybaseClass
, these class names will be applied in addition to the BEMish class names rather than overriding them. The following keys can be used in this map:container
: class name for the footnotes footer that renders the title and all of the footnotes.title
: class name for the title that appears above the footnotes list.ref
: class name for the anchor that takes you to the footnote.list
: class name for the list that renders the footnotes themselves.listItem
: class name for the list items.backLink
: class name for the back-link that appears at the end of each footnote.
These are the default options:
{
baseClass: 'Footnotes',
title: 'Footnotes',
titleId: 'footnotes-label',
backLinkLabel: (footnote, index) => 'Back to reference ' + index + 1,
classes: {},
}
Make sure you have included the footnotes
shortcode somewhere in your page, usually at the bottom of your content section.
{% footnotes %}
If a reference does not pass the footnote content as second argument (or passes a falsy value), the footnote will be discarded entirely and the reference will not be wrapped with an anchor tag.
Additionally, a log like this one will be output during compilation:
[eleventy-plugin-footnotes] Warning: Footnote reference with id ‘css-counters’ has no given description (missing or falsy second argument); footnote omitted entirely.
Unlike other footnoting systems, this one uses properly labeled anchors as references instead of numbers (e.g. [1]
). This is better for accessibility since links can be tabbed through or listed devoid of their surrounding context, and therefore should be self-explanatory.
To still render a sup number after every reference, you can use CSS counters. Initialise a counter on your content container (or body
), and increment it at every reference. Use a pseudo-element to render the number.
body { counter-reset: footnotes }
[role="doc-noteref"]::after {
counter-increment: footnotes;
content: '[' counter(footnotes) ']'
}
Refer to this article on accessible footnotes or this stylesheet for a more comprehensive styling solution.