-
-
Notifications
You must be signed in to change notification settings - Fork 200
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
Multiple values for directory_index_file #195
Labels
Comments
@gjtorikian Do you have roadmap for this issue? |
I noticed something similar to this today on my site:
|
Any updates on this issue? |
I'll take a look! |
I looked into this a bit today and unfortunately it's just not possible to support multiple directory index files. Since HTMLProofer.check_directories(["out/"], {
:url_ignore => [/index\.xml/],
}).run I hope this helps. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a Jekyll website that generates links referring to a directory with different
directory_index_files
:index.html
andindex.xml
(for Atom feeds). html-proofer throws an error for the feed URL since it expectsindex.html
.Using
data-proofer-ignore
to suppress checking the feed URL is not an option since the feed URL is generated by by a plugin: https://github.com/octopress/feeds.Is there a way to define multiple directory index files or suppress checking other than adding this tag?
For information, this is the related ticket, which I opened with the plugin: octopress/feeds#15
The text was updated successfully, but these errors were encountered: