Sha256: 59e79944512e8cb4daf1cf0b32385a8a3216e2fd6f0481b40463e13b6791e47a
Contents?: true
Size: 1.08 KB
Versions: 9
Compression:
Stored size: 1.08 KB
Contents
# -*- coding: utf-8 -*- # module Rouge module Lexers class INI < RegexLexer desc 'the INI configuration format' tag 'ini' # TODO add more here filenames '*.ini', '*.INI', '*.gitconfig' mimetypes 'text/x-ini' def self.analyze_text(text) return 0.1 if text =~ /\A\[[\w.]+\]\s*\w+=\w+/ end identifier = /[\w.]+/ state :basic do rule /[;#].*?\n/, Comment rule /\s+/, Text rule /\\\n/, Str::Escape end state :root do mixin :basic rule /(#{identifier})(\s*)(=)/ do groups Name::Property, Text, Punctuation push :value end rule /\[.*?\]/, Name::Namespace end state :value do rule /\n/, Text, :pop! mixin :basic rule /"/, Str, :dq rule /'.*?'/, Str mixin :esc_str rule /[^\\\n]+/, Str end state :dq do rule /"/, Str, :pop! mixin :esc_str rule /[^\\"]+/m, Str end state :esc_str do rule /\\./m, Str::Escape end end end end
Version data entries
9 entries across 9 versions & 1 rubygems