Override Excerpt#render_all_layouts to just assign content to output
This commit is contained in:
parent
0e0e25b9ba
commit
f99c726085
|
@ -31,6 +31,10 @@ module Jekyll
|
||||||
(output && output.include?(something)) || content.include?(something)
|
(output && output.include?(something)) || content.include?(something)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def render_all_layouts(layouts, payload, info)
|
||||||
|
output = content
|
||||||
|
end
|
||||||
|
|
||||||
# The UID for this post (useful in feeds).
|
# The UID for this post (useful in feeds).
|
||||||
# e.g. /2008/11/05/my-awesome-post
|
# e.g. /2008/11/05/my-awesome-post
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue