mkdocs: exclude more generated file types.

These files can appear/disappear during a parallel build, which
confuses mkdocs when it tries to refer to them, even though we never
wanted them in the docs anyway.
This commit is contained in:
Avery Pennarun 2019-02-23 06:47:59 -05:00
commit 5db883ac58

View file

@ -29,11 +29,13 @@ plugins:
- cookbook/container/*.layer - cookbook/container/*.layer
- cookbook/container/*.list - cookbook/container/*.list
- "t/*" - "t/*"
- "*.tmp" - "*.eps"
- "*.gz" - "*.gz"
- "*.tar" - "*.log"
- "*.pdf" - "*.pdf"
- "*.ps" - "*.ps"
- "*.tar"
- "*.tmp"
- "*.1" - "*.1"
regex: regex:
- ".*~" - ".*~"