Pelican

These projects have been deprecated due to the site moving to Jekyll in 2016

Here are a few plugins and Jinja templating filters created when this site ran under Pelican.

Title Case (Jinja Filter)

This filter is a port of Stuart Colville's titlecase for python which itself is a port of the original
Title Case by John Gruber. You can use this filter on any content returned in your templates to apply the title case algorithm to the text. Unlike regular title case which simply adds an uppercase to each word, the title case plugin is smarter and has various exceptions for different articles, URL's, etc.

Example usage:

{{ article.title | titlecase }}

This would title case your post/article's title.