From 37a250bd8d87608bed11ece968251d08d4d3ddf9 Mon Sep 17 00:00:00 2001 From: Shannon Kularathna <30392854+shannonxtreme@users.noreply.github.com> Date: Mon, 24 Aug 2020 10:42:10 -0400 Subject: [PATCH] Update default.md with info requested in #8314 (#8353) Merge pull request 8353 --- docs/_docs/configuration/default.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/_docs/configuration/default.md b/docs/_docs/configuration/default.md index 13555b12..5d839f0d 100644 --- a/docs/_docs/configuration/default.md +++ b/docs/_docs/configuration/default.md @@ -7,12 +7,19 @@ Jekyll runs with the following configuration options by default. Alternative settings for these options can be explicitly specified in the configuration file or on the command-line. +
+
Be aware of directory paths
+

+ Make directory path values in configuration keys like `plugins_dir` relative to the current working directory, not the site source. +

+
+ ```yaml # Where things are source : . destination : ./_site collections_dir : . -plugins_dir : _plugins +plugins_dir : _plugins # takes an array of strings and loads plugins in that order layouts_dir : _layouts data_dir : _data includes_dir : _includes