diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-23 01:16:40 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-23 01:16:55 -0400 |
commit | da38dbe5847c9bbf231119f3b60fae0800c0370b (patch) | |
tree | c869aa451a347dd0dded6caf5a3c3d5d3472e334 /plugins | |
parent | f49b24ac607ea70b71df26839b95a2e5f0baf7cc (diff) | |
download | my_new_personal_website-da38dbe5847c9bbf231119f3b60fae0800c0370b.tar.xz my_new_personal_website-da38dbe5847c9bbf231119f3b60fae0800c0370b.zip |
fixed misspelling of exerpt to excerpt for in the Octopress filters
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/octopress_filters.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb index 5b49363b..429e505c 100644 --- a/plugins/octopress_filters.rb +++ b/plugins/octopress_filters.rb @@ -2,7 +2,7 @@ module OctopressFilters # Used on the blog index to split posts on the <!--more--> marker - def exerpt(input) + def excerpt(input) if input.index(/<!--\s*more\s*-->/i) input.split(/<!--\s*more\s*-->/i)[0] else |