55 lines
1.1 KiB
Ruby
55 lines
1.1 KiB
Ruby
|
# -*- coding: utf-8 -*- #
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
module Rouge
|
||
|
module Lexers
|
||
|
class INI < RegexLexer
|
||
|
title "INI"
|
||
|
desc 'the INI configuration format'
|
||
|
tag 'ini'
|
||
|
|
||
|
# TODO add more here
|
||
|
filenames '*.ini', '*.INI', '*.gitconfig'
|
||
|
mimetypes 'text/x-ini'
|
||
|
|
||
|
identifier = /[\w\-.]+/
|
||
|
|
||
|
state :basic do
|
||
|
rule %r/[;#].*?\n/, Comment
|
||
|
rule %r/\s+/, Text
|
||
|
rule %r/\\\n/, Str::Escape
|
||
|
end
|
||
|
|
||
|
state :root do
|
||
|
mixin :basic
|
||
|
|
||
|
rule %r/(#{identifier})(\s*)(=)/ do
|
||
|
groups Name::Property, Text, Punctuation
|
||
|
push :value
|
||
|
end
|
||
|
|
||
|
rule %r/\[.*?\]/, Name::Namespace
|
||
|
end
|
||
|
|
||
|
state :value do
|
||
|
rule %r/\n/, Text, :pop!
|
||
|
mixin :basic
|
||
|
rule %r/"/, Str, :dq
|
||
|
rule %r/'.*?'/, Str
|
||
|
mixin :esc_str
|
||
|
rule %r/[^\\\n]+/, Str
|
||
|
end
|
||
|
|
||
|
state :dq do
|
||
|
rule %r/"/, Str, :pop!
|
||
|
mixin :esc_str
|
||
|
rule %r/[^\\"]+/m, Str
|
||
|
end
|
||
|
|
||
|
state :esc_str do
|
||
|
rule %r/\\./m, Str::Escape
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|