Welcome to mirror list, hosted at ThFree Co, Russian Federation.

math.rb « lexers « rouge « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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