A collection of handy extensions to the Liquid templating engine
A collection of handy Liquid filters. Developed for Drip.
Add this line to your application’s Gemfile:
gem 'condensation'
And then execute:
$ bundle
Or install it yourself as:
$ gem install condensation
To make all the filters available in your Liquid templates, place this call
in your app initialization code:
Condensation.register_filters
For example, in a Rails app, you’ll likely place this in an initializer.
To pick and choose which filters you like, just register them manually:
Liquid::Template.register_filter(Condensation::Filters::DaysUntil)
Explore all the available filters here.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)