Sha256: 7f38e9559b8759c802b85a2b871e36910f342eec97c5fb3d3c61526ebcba7e9d

Contents?: true

Size: 289 Bytes

Versions: 5

Compression:

Stored size: 289 Bytes

Contents

# frozen_string_literal: true

module TTFunk
  class Table
    class Post
      module Format30
        def glyph_for(_code)
          '.notdef'
        end

        private

        def parse_format!
          # do nothing. Format 3 is easy-sauce.
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ttfunk-1.7.0 lib/ttfunk/table/post/format30.rb
ttfunk-1.6.2.1 lib/ttfunk/table/post/format30.rb
ttfunk-1.6.2 lib/ttfunk/table/post/format30.rb
ttfunk-1.6.1 lib/ttfunk/table/post/format30.rb
ttfunk-1.6.0 lib/ttfunk/table/post/format30.rb