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: 7d5700b7f6dbd0b028908b78096d16011389a4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Rouge
  module Lexers
    class Plantuml < Lexer
      title "A passthrough lexer used for PlantUML input"
      desc "A boring lexer that doesn't highlight anything"

      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