Liquid, its like Jinja, but not

1 · · Dec. 17, 2020, midnight
So in my recent foray into templating languages I ran across liquid. It has many of the halmarks of Jinja2, however its only kind of similar. Jinja2 is handy because so many pythonisms can come through. For instance: Take the string, ‘debug-this-pal’ In Python string.split('-')[0] would yield you: ‘debug’ In Jinja2 is not terribly different: {{ string.split('-')[0] }} See what I mean, just a few curly braces! Liquid disagrees. Granted, liquid is based on Ruby, whereas Jinja2 is based on python, ...