blob: 63c461764fc617e78eff150cc5e6035a72aa5bf9 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|