Just swallow it if there is no content for the excerpt to parse.

このコミットが含まれているのは:
Parker Moore 2014-10-20 21:45:17 -07:00
コミット b4a2788626
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -106,7 +106,7 @@ module Jekyll
# Returns excerpt String
def extract_excerpt(post_content)
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")
end