lib/rouge/lexers/json_doc.rb in rouge-3.4.1 vs lib/rouge/lexers/json_doc.rb in rouge-3.5.0
- old
+ new
@@ -8,17 +8,17 @@
class JSONDOC < JSON
desc "JavaScript Object Notation with extenstions for documentation"
tag 'json-doc'
prepend :root do
- rule /([$\w]+)(\s*)(:)/ do
+ rule %r/([$\w]+)(\s*)(:)/ do
groups Name::Attribute, Text, Punctuation
end
rule %r(/[*].*?[*]/), Comment
rule %r(//.*?$), Comment::Single
- rule /(\.\.\.)/, Comment::Single
+ rule %r/(\.\.\.)/, Comment::Single
end
end
end
end