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

Enumeration of output content formats.

Matches the Rust `OutputFormat` enum.

## Values

  * `:plain` - Plain text output
  * `:markdown` - Markdown formatted output
  * `:djot` - Djot formatted output
  * `:html` - HTML formatted output
  * `:json` - JSON tree format with heading-driven sections
  * `:structured` - Structured output

# `t`

```elixir
@type t() :: :plain | :markdown | :djot | :html | :json | :structured
```

# `values`

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

Returns all valid OutputFormat values.

## Examples

    iex> Kreuzberg.OutputFormat.values()
    [:plain, :markdown, :djot, :html, :json, :structured]

---

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