summaryrefslogtreecommitdiff
path: root/lib/rouge/lexers/math.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rouge/lexers/math.rb')
-rw-r--r--lib/rouge/lexers/math.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/rouge/lexers/math.rb b/lib/rouge/lexers/math.rb
new file mode 100644
index 00000000000..80784adfd76
--- /dev/null
+++ b/lib/rouge/lexers/math.rb
@@ -0,0 +1,21 @@
+module Rouge
+ module Lexers
+ class Math < Lexer
+ title "A passthrough lexer used for LaTeX input"
+ 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