Phill
Phill
Yes I am getting this too. I am using /:categories/:year/:month/:day/:title/ I noticed that there were 3 posts in one "day/" folder post 1 was created correctly and had a sub...
Hello did this ever get sorted out as Im stuck upgrading a plugin. I have added docs to site.posts.docs.each for Jekyll 3 but "categories.each" still break ``` def posts_group_by_category(site) category_map...
The solution was `p['categories'].each` for me ``` def posts_group_by_category(site) category_map = {} site.posts.docs.each do |p| p['categories'].each do |c| (category_map[c] ||= [])