Introducing the Jekyll Info plugin

Updated on

Jekyll Info page screenshot

This Jekyll plugin automatically generates a page at /jekyll-info.html that provides information about your Jekyll site configuration and files.

Installation

To install, add a new line for the jekyll-info gem to your site’s Gemfile:

group :jekyll_plugins do
  gem 'jekyll-info'
end

Then add the plugin to your site’s _config.yml file:

plugins:
  - jekyll-info

Run bundle install to install the gem.

Usage

Run bundle exec jekyll build to build your site. Navigate to /jekyll-info.html to view your Jekyll site’s configuration.

Configuration

Specify a non-default path via your site’s config. (Default: jekyll-info.html)

info:
  path: site/config.html

Allow when in production environment. (Default: false)

info:
  production: true

GitHub

Visit the GitHub page for project updates.