0.02
Low commit activity in last 3 years
A long-lived project that still receives updates
A Jekyll filter that can parse Liquid in front matter.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 2.0, < 5.0
~> 10.0
~> 3.0

Runtime

>= 2.5, < 5.0
~> 3.1
 Project Readme

Jekyll Liquify

*A Jekyll filter that can parse Liquid in front matter *

Gem Version Build Status Dependency Status

Usage

  1. Add gem 'jekyll-liquify' to your site's Gemfile and run bundle
  2. Add the following to your site's _config.yml:
gems:
  - jekyll-liquify

To use in your project, add liquid tags to front matter and use the liquify filter to parse it:

example.md

---
title: Welcome to {{ page.title_variable }}
title_variable: example
---

# Welcome to {{ title | liquify }}!

<!-- This will output the following -->
>> <h1>Welcome to example!</h1>

You can use it in conjunction with markdownify, but liquify has to go first:

example.md

---
title: Welcome to **{{ page.title_variable }}**
title_variable: example
---

# Welcome to {{ title | liquify | markdownify }}!

<!-- This will output the following -->
>> <h1>Welcome to <strong>example</strong>!</h1>

Testing

  1. script/bootstrap
  2. script/cibuild

Contributing

  1. Fork the project
  2. Create a descriptively named feature branch
  3. Add your feature
  4. Submit a pull request