Override Excerpt#render_all_layouts to just assign content to output

This commit is contained in:
Parker Moore 2013-07-19 15:44:01 +02:00
parent 0e0e25b9ba
commit f99c726085
1 changed files with 4 additions and 0 deletions

View File

@ -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
#