Virgil Dubois

Results 2 comments of Virgil Dubois

Just so you know, you can use the following syntax to append elements in an array: ```liquid {% liquid assign string_list = "second,third,fourth" | split: ',' assign string_to_prepend = "first"...

Do not forget that the first arguments accepts negative values: ```liquid {% liquid assign fruit_list = 'apple,banana,cherry,tomato,fig' | split: ',' # Similar to | slice: 1, -3 assign sliced_fruit_list =...