docs: add overview of .jekyll-cache dir (#8648)

Merge pull request 8648
This commit is contained in:
Kelvin M. Klann 2021-05-14 19:24:55 +00:00 committed by GitHub
parent 60e01d3671
commit 2e65d6d3a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -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:
</p>
</td>
</tr>
<tr>
<td>
<p><code>.jekyll-cache</code></p>
</td>
<td>
<p>
Keeps a copy of the generated pages and markup (e.g.: markdown) for
faster serving. Created when using e.g.: <code>jekyll serve</code>.
Can be disabled with
<a href="/docs/configuration/options/">an option and/or flag</a>.
This directory will not be included in the generated site. Its
probably a good idea to add this to your <code>.gitignore</code>
file.
</p>
</td>
</tr>
<tr>
<td>
<p><code>.jekyll-metadata</code></p>