diff options
author | Douwe Maan <douwe@gitlab.com> | 2017-06-08 02:53:47 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2017-06-08 02:53:47 +0000 |
commit | abc61f260074663e5711d3814d9b7d301d07a259 (patch) | |
tree | 2e452cf7ce0b822c5e5df9ca8637869bf579e6f5 | |
parent | 17173d189587cf59692c9ff8a14c155118e941c2 (diff) | |
parent | c50cded96e5f6f0eaadf9e49ac98f722f09b8fa8 (diff) | |
download | gitlab-ce-abc61f260074663e5711d3814d9b7d301d07a259.tar.gz |
Merge branch 'feature/rouge-2.1.0' into 'master'
update rouge to 2.1.0
See merge request !11992
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | lib/rouge/lexers/math.rb | 16 | ||||
-rw-r--r-- | lib/rouge/lexers/plantuml.rb | 16 |
3 files changed, 5 insertions, 29 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index fe9d7a2b6f9..b5f9c3beca7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -655,7 +655,7 @@ GEM retriable (1.4.1) rinku (2.0.0) rotp (2.1.2) - rouge (2.0.7) + rouge (2.1.0) rqrcode (0.7.0) chunky_png rqrcode-rails3 (0.1.7) diff --git a/lib/rouge/lexers/math.rb b/lib/rouge/lexers/math.rb index 80784adfd76..939b23a3421 100644 --- a/lib/rouge/lexers/math.rb +++ b/lib/rouge/lexers/math.rb @@ -1,21 +1,9 @@ module Rouge module Lexers - class Math < Lexer + class Math < PlainText title "A passthrough lexer used for LaTeX input" - desc "A boring lexer that doesn't highlight anything" - + desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter" 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 diff --git a/lib/rouge/lexers/plantuml.rb b/lib/rouge/lexers/plantuml.rb index 7d5700b7f6d..63c461764fc 100644 --- a/lib/rouge/lexers/plantuml.rb +++ b/lib/rouge/lexers/plantuml.rb @@ -1,21 +1,9 @@ module Rouge module Lexers - class Plantuml < Lexer + class Plantuml < PlainText title "A passthrough lexer used for PlantUML input" - desc "A boring lexer that doesn't highlight anything" - + desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter" tag 'plantuml' - 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 |