From 12d2d882268582c272137410cdccbe90679f6c36 Mon Sep 17 00:00:00 2001 From: Ohad Schneider Date: Tue, 29 Aug 2017 21:38:17 +0300 Subject: [PATCH 1/3] Clarify that jekyll-archives has to be installed And show the simplest way to do it per https://github.com/mmistakes/minimal-mistakes/issues/811#issuecomment-277461052. --- docs/_docs/05-configuration.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md index f26f8c40eb06..bdeb20e96640 100644 --- a/docs/_docs/05-configuration.md +++ b/docs/_docs/05-configuration.md @@ -593,7 +593,16 @@ Which would create category and tag links in the breadcrumbs and page meta like: If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll-archives] will make your life much easier as category and tag pages are created for you. -Change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md): +First, you will need to make sure that the `jekyll-archives` plugin is installed. Add the following to your gem file: +``` +group :jekyll_plugins do + gem "jekyll-archives" +end +``` + +Then run `bundle install`. + +Now that the plugin is installed, change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md): ```yaml category_archive: From a6aa5f5573b7b5e6146dc8aa59d9e0040ec0e750 Mon Sep 17 00:00:00 2001 From: Ohad Schneider Date: Tue, 29 Aug 2017 21:41:11 +0300 Subject: [PATCH 2/3] Mention direct jekyll-archive direct installation via `gem install jekyll-archives` --- docs/_docs/05-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md index bdeb20e96640..91014d524983 100644 --- a/docs/_docs/05-configuration.md +++ b/docs/_docs/05-configuration.md @@ -593,7 +593,7 @@ Which would create category and tag links in the breadcrumbs and page meta like: If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll-archives] will make your life much easier as category and tag pages are created for you. -First, you will need to make sure that the `jekyll-archives` plugin is installed. Add the following to your gem file: +First, you need to make sure that the `jekyll-archives` plugin is installed. Either run `gem install jekyll-archives` or add the following to your `Gemfile`: ``` group :jekyll_plugins do gem "jekyll-archives" From 94483429059e12c65e54089a5f74c37b4ef53844 Mon Sep 17 00:00:00 2001 From: Ohad Schneider Date: Tue, 29 Aug 2017 21:42:18 +0300 Subject: [PATCH 3/3] Update 05-configuration.md grammar --- docs/_docs/05-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md index 91014d524983..16a2e948aeea 100644 --- a/docs/_docs/05-configuration.md +++ b/docs/_docs/05-configuration.md @@ -593,7 +593,7 @@ Which would create category and tag links in the breadcrumbs and page meta like: If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll-archives] will make your life much easier as category and tag pages are created for you. -First, you need to make sure that the `jekyll-archives` plugin is installed. Either run `gem install jekyll-archives` or add the following to your `Gemfile`: +First, you'll need to make sure that the `jekyll-archives` plugin is installed. Either run `gem install jekyll-archives` or add the following to your `Gemfile`: ``` group :jekyll_plugins do gem "jekyll-archives"