From f75f17b05c1236dfa2fa0bd059a32e3232b69ac3 Mon Sep 17 00:00:00 2001
From: Victor Jalencas <victor+github@carotena.net>
Date: Wed, 28 Sep 2011 10:08:55 +0300
Subject: Allow capitalization after a period.

---
 plugins/titlecase.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'plugins')

diff --git a/plugins/titlecase.rb b/plugins/titlecase.rb
index 103bf702..3ad39b1f 100644
--- a/plugins/titlecase.rb
+++ b/plugins/titlecase.rb
@@ -11,8 +11,8 @@ class String
     # capitalize first and last words
     x.first.to_s.smart_capitalize!
     x.last.to_s.smart_capitalize!
-    # small words after colons are capitalized
-    x.join(" ").gsub(/:\s?(\W*#{small_words.join("|")}\W*)\s/) { ": #{$1.smart_capitalize} " }
+    # small words after colons or periods are capitalized
+    x.join(" ").gsub(/(:|\.)\s?(\W*#{small_words.join("|")}\W*)\s/) { "#{$1} #{$2.smart_capitalize} " }
   end
 
   def titlecase!
-- 
cgit v1.2.1