gitlab-org--gitlab-foss/lib/rouge/lexers/math.rb

22 lines
416 B
Ruby
Raw Normal View History

2016-12-08 23:13:44 +00:00
module Rouge
module Lexers
class Math < Lexer
title "A passthrough lexer used for LaTeX input"
2016-12-08 23:13:44 +00:00
desc "A boring lexer that doesn't highlight anything"
tag 'math'
mimetypes 'text/plain'
default_options token: 'Text'
2016-12-08 23:13:44 +00:00
def token
@token ||= Token[option :token]
end
def stream_tokens(string, &b)
yield self.token, string
end
end
end
end