summaryrefslogtreecommitdiff
path: root/lib/rouge/lexers/math.rb
blob: 939b23a34212cb5dc7d70b55a86630656ba24f38 (plain)
1
2
3
4
5
6
7
8
9
module Rouge
  module Lexers
    class Math < PlainText
      title "A passthrough lexer used for LaTeX input"
      desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter"
      tag 'math'
    end
  end
end