From: bep Date: Wed, 3 Jun 2015 11:46:55 +0000 (+0200) Subject: Add some docs for IgnoreFiles X-Git-Tag: v0.15~358 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=beaa1b3a;p=brevno-suite%2Fhugo Add some docs for IgnoreFiles See #1189 --- diff --git a/docs/content/overview/configuration.md b/docs/content/overview/configuration.md index fd8100b2..80df792b 100644 --- a/docs/content/overview/configuration.md +++ b/docs/content/overview/configuration.md @@ -139,6 +139,15 @@ Following is a list of Hugo-defined variables that you can configure and their c watch: false --- +## Ignore files on build + +The following inside `config.toml` will ignore files ending with `.foo` and `.boo` when building with `hugo`. + +``` +ignoreFiles = [ "\\.foo$", "\\.boo$" ] +``` + +The above is is a list of Reqular Expressions, but note the escaping of the `\` to make TOML happy.