Welcome to mirror list, hosted at ThFree Co, Russian Federation.

plantuml.rb « lexers « rouge « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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