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

21 lines
388 B
Ruby
Raw Normal View History

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