I need some help with jekyll permalinks. I've a post named: DATE-my-title.md
and inside it I have:
---
title: My beautiful extended title
---
In _config.yml
I've defined
permalink: /:categories/:title
So it seems that jekyll ignores the filename and instead of getting /my-title
I'm getting /my-beautiful-extended-title
How can I tell jekyll to use the filename url instead of the title
attribute itself?
Showing the actual title.
– fernandojsg Oct 07 '14 at 22:56