debian-mirror-gitlab/lib/rouge/lexers/plantuml.rb

10 lines
236 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Rouge
module Lexers
2017-09-10 17:25:29 +05:30
class Plantuml < PlainText
2017-08-17 22:00:37 +05:30
title "A passthrough lexer used for PlantUML input"
2017-09-10 17:25:29 +05:30
desc "PLEASE REFACTOR - this should be handled by SyntaxHighlightFilter"
2017-08-17 22:00:37 +05:30
tag 'plantuml'
end
end
end