Is it possible to use Liquid tags in YAML Front Matter variables?
For example if test.html contains:
---
variable: "Date: {% date: '%D' %}"
---
{{ page.variable }}
then Jekyll will generate the following HTML:
Date: {% date: '%D' %}
instead of something like:
Date: 03/13/14
Basically I'd like the Liquid tags in the YAML Front Matter variables to be processed.