diff --git a/docs/_docs/structure.md b/docs/_docs/structure.md index c8f13e69..b3f9bf30 100644 --- a/docs/_docs/structure.md +++ b/docs/_docs/structure.md @@ -25,6 +25,10 @@ A basic Jekyll site usually looks something like this: │ ├── _base.scss │ └── _layout.scss ├── _site +├── .jekyll-cache +│ └── Jekyll +│ └── Cache +│ └── [...] ├── .jekyll-metadata └── index.html # can also be an 'index.md' with valid front matter ``` @@ -160,6 +164,22 @@ An overview of what each of these does:
+.jekyll-cache
+ Keeps a copy of the generated pages and markup (e.g.: markdown) for
+ faster serving. Created when using e.g.: jekyll serve
.
+ Can be disabled with
+ an option and/or flag.
+ This directory will not be included in the generated site. It’s
+ probably a good idea to add this to your .gitignore
+ file.
+
.jekyll-metadata