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
1 changed files with 1 additions and 0 deletions

View File

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