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

README.md specifies incorrect 'file' parameter. It should be filename #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ How To Use:
-----------
1. Copy file into your _plugins folder within your Jekyll project.
2. Ensure url is set in your config file (for example `url: http://danielgroves.net`)
3. In your config file, change `sitemap: file:` if you want your sitemap to be called something other than sitemap.xml.
3. In your config file, change `sitemap: filename:` if you want your sitemap to be called something other than sitemap.xml.
4. Change the `sitemap: exclude:` list to exclude any pages that you don't want in the sitemap.
5. Change the `sitemap: include_posts:` list to include any pages that are looping through your posts (e.g. "/index.html", "/notebook/index.md", etc.). This will ensure that right after you make a new post, the last modified date will be updated to reflect the new post.
6. Run Jekyll: `jekyll` to re-generate your site.
Expand All @@ -17,7 +17,7 @@ Configuration defaults:

```yaml
sitemap:
file: "/sitemap.xml"
filename: "/sitemap.xml"
exclude:
- "/atom.xml"
- "/feed.xml"
Expand Down