Merge pull request #1253 from mojombo/catch-conversion-errors

Catch conversion errors.
This commit is contained in:
Matt Rogers 2013-07-01 07:45:24 -07:00
commit 359383b5b4
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,10 @@ module Jekyll
# Returns nothing. # Returns nothing.
def transform def transform
self.content = converter.convert(self.content) self.content = converter.convert(self.content)
rescue => e
Jekyll.logger.error "Conversion error:", "There was an error converting" +
" '#{self.path}'."
raise e
end end
# Determine the extension depending on content_type. # Determine the extension depending on content_type.