diff --git a/docs/_data/config_options/global.yml b/docs/_data/config_options/global.yml
index 406e841e..d645aa70 100644
--- a/docs/_data/config_options/global.yml
+++ b/docs/_data/config_options/global.yml
@@ -40,13 +40,33 @@
description: >-
Exclude directories and/or files from the conversion. These exclusions are relative to the site's source directory
and cannot be outside the source directory.
+
+ In Jekyll 3, the `exclude` configuration option replaces the default exclusion list.
+
+ In Jekyll 4, user-provided entries get added to the default exclusion list instead and the `include` option can be
+ used to override the default exclusion list entries.
+
+ The default exclusions are found in _config.yml
as created by jekyll new
:
+
.sass-cache/
.jekyll-cache/
gemfiles/
Gemfile
Gemfile.lock
node_modules/
vendor/bundle/
vendor/cache/
vendor/gems/
vendor/ruby/
.htaccess
is a good example since
- dotfiles are excluded by default.
+ dotfiles are excluded by default. With Jekyll 4, the `include` configuration option entries override the
+ `exclude` option entries.
option: "include: [DIR, FILE, ...]"