diff options
author | Alex Peters <alex@peters.net> | 2022-06-16 14:18:52 +1000 |
---|---|---|
committer | Alex Peters <alex@peters.net> | 2022-06-16 14:18:52 +1000 |
commit | 70060161215d47ed9f9f51d8f490b0944e26e44e (patch) | |
tree | e9835982ebed4fb3d9d86b1fa113977ae4582c33 | |
parent | e8d6318e93fecacebca41b2013622b374bd2ad34 (diff) | |
download | pelican-70060161215d47ed9f9f51d8f490b0944e26e44e.tar.gz |
Add note about unintended static page processing
Fixes #2990.
-rw-r--r-- | docs/content.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/content.rst b/docs/content.rst index cd492012..84ebb6da 100644 --- a/docs/content.rst +++ b/docs/content.rst @@ -197,6 +197,13 @@ are copied over with the ``STATIC_PATHS`` setting of the project's ``images`` directory for this, but others must be added manually. In addition, static files that are explicitly linked to are included (see below). +.. note:: + + In the default configuration, all files with a valid content file suffix + (``.html``, ``.rst``, ``.md``, ...) get processed by the article and page + generators *before* the static generator. This is avoided by altering the + ``*_EXCLUDE`` settings appropriately. + Mixed content in the same directory ----------------------------------- |