Merge pull request 8353
This commit is contained in:
parent
cac8d6ca5f
commit
37a250bd8d
|
@ -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
|
settings for these options can be explicitly specified in the configuration
|
||||||
file or on the command-line.
|
file or on the command-line.
|
||||||
|
|
||||||
|
<div class="note info">
|
||||||
|
<h5>Be aware of directory paths</h5>
|
||||||
|
<p>
|
||||||
|
Make directory path values in configuration keys like `plugins_dir` relative to the current working directory, not the site source.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Where things are
|
# Where things are
|
||||||
source : .
|
source : .
|
||||||
destination : ./_site
|
destination : ./_site
|
||||||
collections_dir : .
|
collections_dir : .
|
||||||
plugins_dir : _plugins
|
plugins_dir : _plugins # takes an array of strings and loads plugins in that order
|
||||||
layouts_dir : _layouts
|
layouts_dir : _layouts
|
||||||
data_dir : _data
|
data_dir : _data
|
||||||
includes_dir : _includes
|
includes_dir : _includes
|
||||||
|
|
Loading…
Reference in New Issue