Sha256: 03f676763e227d6502d56423ea8eb96d38591faeb5ec0e49485a3b4b2ab071c9

Contents?: true

Size: 1.8 KB

Versions: 6

Compression:

Stored size: 1.8 KB

Contents

module Rouge
  module Lexers
    class TeX < RegexLexer
      tag 'tex'
      aliases 'TeX', 'LaTeX', 'latex'

      filenames '*.tex', '*.aux', '*.toc'
      mimetypes 'text/x-tex', 'text/x-latex'

      def self.analyze_text(text)
        return 1 if text =~ /\A\s*\\documentclass/
        return 1 if text =~ /\A\s*\\input/
        return 1 if text =~ /\A\s*\\documentstyle/
        return 1 if text =~ /\A\s*\\relax/
      end

      command = /\\([a-z]+|\s+|.)/i

      state :general do
        rule /%.*$/, 'Comment'
        rule /[{}&_^]/, 'Punctuation'
      end

      state :root do
        rule /\\\[/, 'Punctuation', :displaymath
        rule /\\\(/, 'Punctuation', :inlinemath
        rule /\$\$/, 'Punctuation', :displaymath
        rule /\$/, 'Punctuation', :inlinemath
        rule /\\(begin|end)\{.*?\}/, 'Name.Tag'

        rule /(\\verb)\b(\S)(.*?)(\2)/ do |m|
          group 'Name.Builtin'
          group 'Keyword.Pseudo'
          group 'Literal.String.Other'
          group 'Keyword.Pseudo'
        end

        rule command, 'Keyword', :command
        mixin :general
        rule /[^\\$%&_^{}]+/, 'Text'
      end

      state :math do
        rule command, 'Name.Variable'
        mixin :general
        rule /[0-9]+/, 'Literal.Number'
        rule /[-=!+*\/()\[\]]/, 'Operator'
        rule /[^=!+*\/()\[\]\\$%&_^{}0-9-]+/, 'Name.Builtin'
      end

      state :inlinemath do
        rule /\\\)/, 'Punctuation', :pop!
        rule /\$/, 'Punctuation', :pop!
        mixin :math
      end

      state :displaymath do
        rule /\\\]/, 'Punctuation', :pop!
        rule /\$\$/, 'Punctuation', :pop!
        rule /\$/, 'Name.Builtin'
        mixin :math
      end

      state :command do
        rule /\[.*?\]/, 'Name.Attribute'
        rule /\*/, 'Keyword'
        rule(//) { pop! }
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rouge-0.2.0 lib/rouge/lexers/tex.rb
rouge-0.1.2 lib/rouge/lexers/tex.rb
rouge-0.1.1 lib/rouge/lexers/tex.rb
rouge-0.1.0 lib/rouge/lexers/tex.rb
rouge-0.1.0.rc1 lib/rouge/lexers/tex.rb
rouge-0.0.14 lib/rouge/lexers/tex.rb