# `HtmlToMarkdown.OutputFormat`

Output format for conversion.

Specifies the target markup language format for the conversion output.

# `t`

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

Output format for conversion.

# `djot`

```elixir
@spec djot() :: t()
```

Djot lightweight markup language.

# `markdown`

```elixir
@spec markdown() :: t()
```

Standard Markdown (`CommonMark` compatible). Default.

# `plain`

```elixir
@spec plain() :: t()
```

Plain text output (no markup, visible text only).

---

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