View Source Figlet.Font (figlet v0.3.2)

Stores information about a Figlet font: a container for characters.

Keys

  • :source the path to the file that was parsed.
  • :meta contains a Meta struct.
  • :comments comments included by font's author.
  • :char_map a map with integer keys representing codepoints and values representing how to draw the given character.
  • :is_valid? boolean check on whether this represents a complete and valid FIGlet.

Summary

Types

t()

@type t() :: %Figlet.Font{
  char_map: %{optional(integer()) => Figlet.Char.t()},
  comments: binary(),
  is_valid?: boolean(),
  meta: Figlet.Meta.t(),
  source: binary()
}