module Jekyll module Maps class OptionsParser OPTIONS_SYNTAX = %r!([^\s]+)\s*:\s*([^\s]+)! ALLOWED_ATTRIBUTES = %w( id width height class ).freeze class << self def parse(raw_options) options = { :attributes => {}, :filters => {} } raw_options.scan(OPTIONS_SYNTAX).each do |key, value| value = value.split(",") if value.include?(",") if ALLOWED_ATTRIBUTES.include?(key) options[:attributes][key.to_sym] = value else options[:filters][key] = value end end options end end end end end