Typst.Format.Table.Footer (Typst v0.1.4)

View Source

Creates a typst table.footer() and implements the String.Chars protocol for easy EEx interpolation.

Examples

iex> alias Typst.Format.Table.Footer
...> %Footer{repeat: false, content: ["hello", "world"]} |> to_string()
"table.footer(repeat: false, [hello], [world])"

Summary

Types

t()

@type t() :: %Typst.Format.Table.Footer{
  content: String.Chars.t() | [String.Chars.t()],
  repeat: boolean()
}