A Jekyll plugin to pull the page title from the first Markdown heading when none is specified.
If you have a Jekyll page that doesn't have a title specified in the YAML Front Matter, but the first non-whitespace line in the page is a Markdown H1 / H2 / H3, this plugin instructs Jekyll to use that first heading as the page's title.
Because lots of plugins and templates rely on page.title
.
If you're using a plugin like Jekyll Optional Front Matter, you'd have to add Front Matter, just to get the title, which you're already specifying in the document.
Additionally, this allows you to store the title semantically, in the document itself so that it's readable, both as Markdown and when rendered, as machine-readable for plugins like Jekyll SEO Tag.
- Add the following to your site's Gemfile:
gem 'jekyll-titles-from-headings'
- Add the following to your site's config file:
plugins:
- jekyll-titles-from-headings
Note: If you are using a Jekyll version less than 3.5.0, use the gems
key instead of plugins
.
Configuration options are optional and placed in _config.yml
under the titles_from_headings
key. They default to:
titles_from_headings:
enabled: true
strip_title: false
collections: false
If your theme renders titles based on page.title
, you can remove the title from the content by setting strip_title
to prevent rendering it twice.
To limit this behavior to a certain layouts or paths, you can use front matter defaults, e.g.
defaults:
- scope:
path: some-path
layout: some_layout
values:
strip_title: true
If you want to enable this plugin for collection items, set the collections
option to true
.
Since collection items (including posts) already have a title inferred from their filename, this option changes the behavior of this plugin to override the inferred title. The inferred title is only used as a fallback in case the document doesn't start with a heading.
Even if the plugin is enabled (e.g., via the :jekyll_plugins
group in your Gemfile) you can disable it by setting the enabled
key to false
.