I'm writing a Jekyll setup and I'd like to get my posts to have a permalink in the form: /2013/jan/something-something-in-january
. I understand that it is impossible with vanilla permalinks to:
- get the
:month
to be in text form or - get the
:title
to be dash delimited
I remember reading somewhere that I could achieve this by writing a plugin, but I'm not sure how. How can I do this?
/2013/jan/something-something-in-january
. I can't do this with the vanilla permalink implementation. What are the steps to creating a plugin that would do this (i.e. what classes to extend etc.) - liamzebedee