Nick Pearson

Results 3 comments of Nick Pearson

To work around this, I've always used nested `if`/`unless` statements, which isn't pretty but it works. So, if you have this in a language that has a `not` operator: ```...

I've used the `boolean-expressions` gem to handle boolean logic like requested, though not in the context of Liquid. I'll just leave this link here in case it helps someone who...

You should probably call `to_s` on `icon` before trying to `split` it. Before this change, a `Symbol` could be passed in, but now it requires a `String`, potentially causing existing...