jekyll/lib
atomicules e4aa45b03f Fix titleize_slug so already capitalized words are not dropped
Previously `titleize` used `capitalize!` which has the side effect of
returning `nil` for anything already starting with a capital letter. This
commit changes it to just `capitalize`.

Example, before:

A file "2016-01-01-This-is-a-title-with-Capitals.markdown" would return "Is A
Title With" for `post.title`

Example, after:

A file "2016-01-01-This-is-a-title-with-Capitals.markdown" will return "This Is A
Title With Capitals" for `post.title`

Tests added for `titleize_slug` in test_utils.rb

Fix problem introduced in 67f842546e

References #4525
2016-02-15 21:22:50 +00:00
..
jekyll Fix titleize_slug so already capitalized words are not dropped 2016-02-15 21:22:50 +00:00
site_template Escape html from site.title and page.title 2016-01-03 16:10:38 -05:00
jekyll.rb Rubocop: Do not use unless with else 2016-01-04 11:51:14 -08:00