mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-19 02:44:29 -05:00
Merge pull request #1253 from mojombo/catch-conversion-errors
Catch conversion errors.
This commit is contained in:
@@ -48,6 +48,10 @@ module Jekyll
|
||||
# Returns nothing.
|
||||
def transform
|
||||
self.content = converter.convert(self.content)
|
||||
rescue => e
|
||||
Jekyll.logger.error "Conversion error:", "There was an error converting" +
|
||||
" '#{self.path}'."
|
||||
raise e
|
||||
end
|
||||
|
||||
# Determine the extension depending on content_type.
|
||||
|
||||
Reference in New Issue
Block a user