How to get lowercase month names in Pelican URLs/paths

from blog heyman.info, | ↗ original
When I rewrote this website using Pelican, I wanted to use three letter month names (i.e. jan, feb, mar) in the URLs. In Pelican you can customize the URL of an article by setting the ARTICLE_URL and ARTICLE_SAVE_AS variables, like this: ARTICLE_URL = '/{date:%Y}/{date:%b}/{date:%d}/{slug}' ARTICLE_SAVE_AS =...