Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add information .jekyll-metadata #3597

Merged
merged 1 commit into from
Mar 20, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions site/_docs/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ A basic Jekyll site usually looks something like this:
├── _data
| └── members.yml
├── _site
├── .jekyll-metadata
└── index.html
{% endhighlight %}

Expand Down Expand Up @@ -155,6 +156,22 @@ An overview of what each of these does:
</p>
</td>
</tr>
<tr>
<td>
<p><code>.jekyll-metadata</code></p>
</td>
<td>
<p>

This is file helps Jekyll keep track of which files have not been
modified since the site was last built, and which files will need to
be regenerated on the next build. This file will not be included in
the generated site. It’s probably a good idea to add this to your
<code>.gitignore</code> file.

</p>
</td>
</tr>
<tr>
<td>
<p><code>index.html</code> and other HTML, Markdown, Textile files</p>
Expand Down