instiki/vendor/plugins/HTML5lib/lib/core_ext/string.rb
2007-10-06 11:55:58 -05:00

17 lines
305 B
Ruby

class String
alias old_format %
define_method("%") do |data|
unless data.kind_of?(Hash)
$VERBOSE = false
r = old_format(data)
$VERBOSE = true
r
else
ret = self.clone
data.each do |k,v|
ret.gsub!(/\%\(#{k}\)/, v)
end
ret
end
end
end