Sha256: 03a4bf178dd166f5d07509df2b13393a3706dc513cb0ec0bc89e772382b814de

Contents?: true

Size: 365 Bytes

Versions: 48

Compression:

Stored size: 365 Bytes

Contents

# -*- coding: utf-8 -*- #
# frozen_string_literal: true

module Rouge
  module Formatters
    # A formatter which renders nothing.
    class Null < Formatter
      tag 'null'

      def initialize(*)
      end

      def stream(tokens, &b)
        tokens.each do |tok, val|
          yield "#{tok.qualname} #{val.inspect}\n"
        end
      end
    end
  end
end

Version data entries

48 entries across 48 versions & 3 rubygems

Version Path
rouge-3.26.0 lib/rouge/formatters/null.rb
rouge-3.25.0 lib/rouge/formatters/null.rb
rouge-3.24.0 lib/rouge/formatters/null.rb
rouge-3.23.0 lib/rouge/formatters/null.rb
rouge-3.22.0 lib/rouge/formatters/null.rb
rouge-3.21.0 lib/rouge/formatters/null.rb
rouge-3.20.0 lib/rouge/formatters/null.rb
rouge-3.19.0 lib/rouge/formatters/null.rb
rouge-3.18.0 lib/rouge/formatters/null.rb
rouge-3.17.0 lib/rouge/formatters/null.rb
rouge-3.16.0 lib/rouge/formatters/null.rb
rouge-3.15.0 lib/rouge/formatters/null.rb
rouge-3.14.0 lib/rouge/formatters/null.rb
rouge-3.13.0 lib/rouge/formatters/null.rb
rouge-3.12.0 lib/rouge/formatters/null.rb
rouge-3.11.1 lib/rouge/formatters/null.rb
rouge-3.11.0 lib/rouge/formatters/null.rb
rouge-3.10.0 lib/rouge/formatters/null.rb
rouge-3.9.0 lib/rouge/formatters/null.rb
rouge-3.8.0 lib/rouge/formatters/null.rb