debian-mirror-gitlab/lib/rouge/lexers/math.rb

10 lines
225 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Rouge
module Lexers
2017-09-10 17:25:29 +05:30
class Math < PlainText
2017-08-17 22:00:37 +05:30
title "A passthrough lexer used for LaTeX input"
2017-09-10 17:25:29 +05:30
desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter"
2017-08-17 22:00:37 +05:30
tag 'math'
end
end
end