diff options
author | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-11-22 14:12:04 +1100 |
---|---|---|
committer | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-11-22 14:12:04 +1100 |
commit | 131e74d10dafbf2b781ab5d5517e42a18e20a587 (patch) | |
tree | 92f275a9578760d9808d9a9f668df4d8341e4aab /lib/rouge | |
parent | 6675bab59944bf075579bfb84cb1dd26cada39e9 (diff) | |
download | gitlab-ce-131e74d10dafbf2b781ab5d5517e42a18e20a587.tar.gz |
Add support of Mermaid
Diffstat (limited to 'lib/rouge')
-rw-r--r-- | lib/rouge/lexers/math.rb | 9 | ||||
-rw-r--r-- | lib/rouge/lexers/plantuml.rb | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/lib/rouge/lexers/math.rb b/lib/rouge/lexers/math.rb deleted file mode 100644 index 939b23a3421..00000000000 --- a/lib/rouge/lexers/math.rb +++ /dev/null @@ -1,9 +0,0 @@ -module Rouge - module Lexers - class Math < PlainText - title "A passthrough lexer used for LaTeX input" - desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter" - tag 'math' - end - end -end diff --git a/lib/rouge/lexers/plantuml.rb b/lib/rouge/lexers/plantuml.rb deleted file mode 100644 index 63c461764fc..00000000000 --- a/lib/rouge/lexers/plantuml.rb +++ /dev/null @@ -1,9 +0,0 @@ -module Rouge - module Lexers - class Plantuml < PlainText - title "A passthrough lexer used for PlantUML input" - desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter" - tag 'plantuml' - end - end -end |