Just swallow it if there is no content for the excerpt to parse.
This commit is contained in:
parent
3762878381
commit
b4a2788626
|
@ -106,7 +106,7 @@ module Jekyll
|
||||||
# Returns excerpt String
|
# Returns excerpt String
|
||||||
def extract_excerpt(post_content)
|
def extract_excerpt(post_content)
|
||||||
separator = site.config['excerpt_separator']
|
separator = site.config['excerpt_separator']
|
||||||
head, _, tail = post_content.partition(separator)
|
head, _, tail = post_content.to_s.partition(separator)
|
||||||
|
|
||||||
"" << head << "\n\n" << tail.scan(/^\[[^\]]+\]:.+$/).join("\n")
|
"" << head << "\n\n" << tail.scan(/^\[[^\]]+\]:.+$/).join("\n")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue