From f99c726085569fffcb65de0a28da93df1473369b Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Fri, 19 Jul 2013 15:44:01 +0200 Subject: [PATCH] Override Excerpt#render_all_layouts to just assign content to output --- lib/jekyll/excerpt.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/jekyll/excerpt.rb b/lib/jekyll/excerpt.rb index ce0c3351..fb63f5cb 100644 --- a/lib/jekyll/excerpt.rb +++ b/lib/jekyll/excerpt.rb @@ -31,6 +31,10 @@ module Jekyll (output && output.include?(something)) || content.include?(something) end + def render_all_layouts(layouts, payload, info) + output = content + end + # The UID for this post (useful in feeds). # e.g. /2008/11/05/my-awesome-post #