I have a Jekyll app (using Liquid) and I'd like to know how to, in Liquid, group a collection of items into a small subset of collections.
For instance, pretend I have this array:
fruits = ['apples', 'oranges', 'bananas', 'pears', 'grapes']
What I'd really like to do, in the Liquid page, is get this:
fruit_groups = [['apples', 'oranges'], ['bananas', 'pears'], ['grapes', null]]
For example, Ruby on Rails can do this with their .group_by method attached to enumerables.
Can I do this in Liquid?
Use case: I have a big collection of items, but I need to convert them into columns of <ul> elements. So, if I have three columns, I need to get three sub-collections.
Thanks!