summaryrefslogtreecommitdiff
path: root/lib/gitlab/asciidoc/syntax_highlighter/html_pipeline_adapter.rb
blob: 5fc3323f0fd02d8e72f0b871077facd6c44f0918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Asciidoc
    module SyntaxHighlighter
      class HtmlPipelineAdapter < Asciidoctor::SyntaxHighlighter::Base
        register_for 'gitlab-html-pipeline'

        def format(node, lang, opts)
          %(<pre><code #{lang ? %[ lang="#{lang}"] : ''}>#{node.content}</code></pre>)
        end
      end
    end
  end
end