Skip to content

Commit

Permalink
Unknown option keys are now simply passed through and not removed any…
Browse files Browse the repository at this point in the history
…more
  • Loading branch information
gettalong committed Sep 21, 2013
1 parent 0e8b27f commit 64e2d52
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/kramdown/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ def self.merge(hash)
temp = defaults
hash.each do |k,v|
k = k.to_sym
next unless @options.has_key?(k)
temp[k] = parse(k, v)
@options.has_key?(k) ? temp[k] = parse(k, v) : temp[k] = v
end
temp
end
Expand Down

0 comments on commit 64e2d52

Please sign in to comment.