From 2e65d6d3a93f0f8d1322abf5c94f7320530e4615 Mon Sep 17 00:00:00 2001
From: "Kelvin M. Klann"
Date: Fri, 14 May 2021 19:24:55 +0000
Subject: [PATCH] docs: add overview of .jekyll-cache dir (#8648)
Merge pull request 8648
---
docs/_docs/structure.md | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
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
|