From cd8d1739354b6c527fbeb9e609c9b5d9e10c9547 Mon Sep 17 00:00:00 2001 From: PLanCompS <18308236+pdmosses@users.noreply.github.com> Date: Fri, 11 Sep 2020 18:54:32 +0200 Subject: [PATCH] Updated tests activation documenation Apparetnly Jekyll's `include` config option cannot be used to override an `exclude`, so activating `docs/tests/` requires commenting-out that line in the `exclude` list. --- docs/tests/index.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/tests/index.md b/docs/tests/index.md index 7c03c7b..27fc4d7 100644 --- a/docs/tests/index.md +++ b/docs/tests/index.md @@ -9,8 +9,14 @@ nav_order: 100 The main documentation pages of this theme illustrate the use of many of its features, which to some extent tests their implementation. The pages linked below provide further test cases for particular features, and may be useful for regression testing when developing new features. -The default configuration does not include the test pages. To include them, add the following option to `_config.yml': +The default configuration does not include the test pages. To include them, *commment-out* the following line in `_config.yml`: ```yaml -include: ["docs/tests/"] +, "docs/tests/" ``` +so that it is: +```yaml +# , "docs/tests/" +``` + +(Apparently Jekyll's `include` does *not* override `exclude` for the same folder...)