Hello, it’s my first time with Jekyll and Liquid, and fortunately, I’ve easily managed to build my project. But there are a couple issues I couldn’t overcome with the information provided in Jekyll documentation.
I have a single collection for which I have 3 different custom front matter items. I’ve set up the collection, sorted them successfully using “where” argument, and have them working just fine. But I can’t have more than one value for each front matter string, such as
---
layout: default
x: a
y: b
z: c d e
---
I’ve tried space-separated, comma-separated and YAML lists, but none of them worked. “c d e” is rendered as a single value, instead of 3 separate values. Where do I go wrong?
Thanks, regards!