No commit activity in last 3 years
No release in over 3 years
A powerful replacement for the Liquid assign tag
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Octopress Assign Tag

A more powerful assign liquid tag. Features:

  • Conditional assignment
  • Ternary assignment
  • Support for ||, ||= and +=

Build Status Gem Version License

Installation

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

Usage

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 %}

Contributing

  1. Fork it ( https://github.com/octopress/assign-tag/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request