# `Typst.Format.Table.Header`
[🔗](https://github.com/Hermanverschooten/typst/blob/main/lib/format/table.ex#L224)

Creates a typst [`table.header()`](https://typst.app/docs/reference/model/table/#definitions-header) and implements the `String.Chars` protocol for easy EEx interpolation.

## Examples

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

# `t`

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
