Browse Source

Date format: Remove unnecessary escapement

unreleased_contents
Frederic Hemberger 13 years ago
parent
commit
4feeecfdef
  1. 1
      plugins/date.rb

1
plugins/date.rb

@ -36,7 +36,6 @@ module Octopress
if format.nil? || format.empty? || format == "ordinal"
date_formatted = ordinalize(date)
else
format.gsub!(/%o/, '%%o')
date_formatted = date.strftime(format)
date_formatted.gsub!(/%o/, ordinal(date.strftime('%e').to_i))
end

Loading…
Cancel
Save