Convertible#converters: sort the converters

This commit is contained in:
Parker Moore 2016-08-30 14:14:33 -07:00
parent 73e79f0049
commit 8014c54ee0
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ module Jekyll
#
# Returns an array of Converter instances.
def converters
@converters ||= site.converters.select { |c| c.matches(document.extname) }
@converters ||= site.converters.select { |c| c.matches(document.extname) }.sort
end
# Determine the extname the outputted file should have