2016-12-08 18:13:44 -05:00
|
|
|
module Rouge
|
|
|
|
module Lexers
|
2017-06-07 20:49:03 -04:00
|
|
|
class Math < PlainText
|
2016-12-08 19:15:08 -05:00
|
|
|
title "A passthrough lexer used for LaTeX input"
|
2017-06-07 20:49:03 -04:00
|
|
|
desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter"
|
2016-12-08 18:13:44 -05:00
|
|
|
tag 'math'
|
|
|
|
end
|
|
|
|
end
|
2016-12-08 19:15:08 -05:00
|
|
|
end
|