Sha256: ec72df462f521fa1adb57b64b62a1b9d37a150d084fcc1dc14dec36c6c7c393e
Contents?: true
Size: 1.45 KB
Versions: 32
Compression:
Stored size: 1.45 KB
Contents
# -*- coding: utf-8 -*- # module Rouge module Lexers class Nginx < RegexLexer title "nginx" desc 'configuration files for the nginx web server (nginx.org)' tag 'nginx' mimetypes 'text/x-nginx-conf' filenames 'nginx.conf' id = /[^\s$;{}()#]+/ state :root do rule /(include)(\s+)([^\s;]+)/ do groups Keyword, Text, Name end rule id, Keyword, :statement mixin :base end state :block do rule /}/, Punctuation, :pop! rule id, Keyword::Namespace, :statement mixin :base end state :statement do rule /{/ do token Punctuation; pop!; push :block end rule /;/, Punctuation, :pop! mixin :base end state :base do rule /\s+/, Text rule /#.*?\n/, Comment::Single rule /(?:on|off)\b/, Name::Constant rule /[$][\w-]+/, Name::Variable # host/port rule /([a-z0-9.-]+)(:)([0-9]+)/i do groups Name::Function, Punctuation, Num::Integer end # mimetype rule %r([a-z-]+/[a-z-]+)i, Name::Class rule /[0-9]+[kmg]?\b/i, Num::Integer rule /(~)(\s*)([^\s{]+)/ do groups Punctuation, Text, Str::Regex end rule /[:=~]/, Punctuation # pathname rule %r(/#{id}?), Name rule /[^#\s;{}$\\]+/, Str # catchall rule /[$;]/, Text end end end end
Version data entries
32 entries across 30 versions & 6 rubygems