# `HtmlToMarkdown.ListIndentType`

List indentation character type.

Controls whether list items are indented with spaces or tabs.

# `t`

```elixir
@type t() :: :spaces | :tabs
```

List indentation character type.

# `spaces`

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

Use spaces for indentation. Default. Width controlled by `list_indent_width`.

# `tabs`

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

Use tabs for indentation.

---

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