A more powerful assign liquid tag. Features:
- Conditional assignment
- Ternary assignment
- Support for
||
,||=
and+=
If you're using bundler add this gem to your site's Gemfile in the :jekyll_plugins
group:
group :jekyll_plugins do
gem 'octopress-assign-tag'
end
Then install the gem with Bundler
$ bundle
To install manually without bundler:
$ gem install octopress-assign-tag
Then add the gem to your Jekyll configuration.
gems:
-octopress-assign-tag
Use the assign tag like normal.
{% assign var1 = 'awesome' %} //=> 'awesome'
{% assign var2 = var1 | upcase %} //=> 'AWESOME'
Conditionally assign variables.
{% assign linkpost = true if post.external-url %}
{% assign comments = true unless post.comments == false %}
{% assign url (post ? post.url : page.url) %}
Use fancy operators in assignment.
{% assign author = post.author || page.author || site.author %}
{% assign name ||= site.name %}
{% assign title_text += ' →' if linkpost %}
- Fork it ( https://github.com/octopress/assign-tag/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request