-
Notifications
You must be signed in to change notification settings - Fork 37
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
Jekyll3 #24
base: master
Are you sure you want to change the base?
Jekyll3 #24
Conversation
@parkr: can you review and merge this? Not sure all the patches in this PR are needed. I only saw the |
Looks like Travis is having a tough time with our current configuration, and octopress-multilingual is causing issues as well. Oh, fun. |
end | ||
else | ||
page.site.collections[page['paginate']['collection']].docs | ||
end | ||
|
||
if categories = page.data['paginate']['categories'] | ||
collection = collection.reject{|p| (p.categories & categories).empty?} | ||
collection = collection.reject{|p| (p.data['categories'] & categories).empty?} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@XhmikosR I think these p.data
changes are still required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can it be because I don't use categories so that code isn't run at all?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would make sense, yes.
@parkr: do you need any help with this? I can try rebasing the branch. |
The following adds support for Jekyll 3 and removes some deprecation warnings.