# `Kreuzberg.ContentLayer`
[🔗](https://github.com/kreuzberg-dev/kreuzberg/blob/main/lib/kreuzberg/content_layer.ex#L1)

Enumeration of content layers within a document.

Matches the Rust `ContentLayer` enum.

## Values

  * `:body` - Main body content
  * `:header` - Header content
  * `:footer` - Footer content
  * `:footnote` - Footnote content

# `t`

```elixir
@type t() :: :body | :header | :footer | :footnote
```

# `values`

```elixir
@spec values() :: [t()]
```

Returns all valid ContentLayer values.

## Examples

    iex> Kreuzberg.ContentLayer.values()
    [:body, :header, :footer, :footnote]

---

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