View Source Figlet.Meta (figlet v0.3.2)

Contains meta data about a Figlet font parsed from its header row.

Keys

  • :hard_blank the character that represents "hard", un-squishable space.
  • :height the number of rows used by each character.
  • :max_length
  • :old_layout
  • :comment_lines the number of comment lines used before character data begins.
  • :print_direction 0 : left to right. 1 : right to left.
  • :full_layout
  • :codetag_count

Summary

Types

t()

@type t() :: %Figlet.Meta{
  baseline: integer(),
  codetag_count: integer(),
  comment_lines: integer(),
  full_layout: integer(),
  hard_blank: binary(),
  height: integer(),
  max_length: integer(),
  old_layout: integer(),
  print_direction: integer()
}