aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-08-20 16:02:37 -0400
committerBrandon Mathis <brandon@imathis.com>2011-08-20 16:02:50 -0400
commit596ec87c37d4f848e478abbbd0690e52eeb37db1 (patch)
tree0edffecab3ff19fe8f84d7cd0389c28c8bbf72f6 /plugins
parent178a198ea7f932307bbe2affeba10240a3168ff3 (diff)
downloadmy_new_personal_website-596ec87c37d4f848e478abbbd0690e52eeb37db1.tar.xz
my_new_personal_website-596ec87c37d4f848e478abbbd0690e52eeb37db1.zip
now only excerpted articles show the "read on" link. Also the text for that link can be set in the _config.yml
Diffstat (limited to 'plugins')
-rw-r--r--plugins/octopress_filters.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb
index 1170f8b6..a63c43ab 100644
--- a/plugins/octopress_filters.rb
+++ b/plugins/octopress_filters.rb
@@ -12,6 +12,11 @@ module OctopressFilters
end
end
+ # Checks for excerpts (helpful for template conditionals)
+ def has_excerpt(input)
+ input =~ /<!--\s*more\s*-->/i ? true : false
+ end
+
# Summary is used on the Archive pages to return the first block of content from a post.
def summary(input)
if input.index(/\n\n/)