Ensure exclude and include arrays are arrays of strings.

Fixes #2542.
This commit is contained in:
Parker Moore
2014-06-25 16:56:27 -04:00
parent e310af00b4
commit d16f62cb38

View File

@@ -234,6 +234,7 @@ module Jekyll
" as a list of comma-separated values."
config[option] = csv_to_array(config[option])
end
config[option].map!(&:to_s)
end
if config.fetch('markdown', 'kramdown').to_s.downcase.eql?("maruku")