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.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rouge/lexers/math.rb b/lib/rouge/lexers/math.rb
index ae980da8283..80784adfd76 100644
--- a/lib/rouge/lexers/math.rb
+++ b/lib/rouge/lexers/math.rb
@@ -1,13 +1,13 @@
module Rouge
module Lexers
class Math < Lexer
- title "Plain Text"
+ 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'
+ default_options token: 'Text'
def token
@token ||= Token[option :token]
@@ -18,4 +18,4 @@ module Rouge
end
end
end
-end \ No newline at end of file
+end