lib/rouge/lexers/toml.rb in rouge-1.1.0 vs lib/rouge/lexers/toml.rb in rouge-1.2.0
- old
+ new
@@ -28,11 +28,10 @@
state :root do
mixin :basic
rule /(#{identifier})(\s*)(=)/ do
- group Name::Property; group Text
- group Punctuation
+ groups Name::Property, Text, Punctuation
push :value
end
end