# `HtmlToMarkdown.LinkStyle`

Link rendering style in Markdown output.

Controls whether links and images use inline `[text](url)` syntax or
reference-style `[text][1]` syntax with definitions collected at the end.

# `t`

```elixir
@type t() :: :inline | :reference
```

Link rendering style in Markdown output.

# `inline`

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

Inline links: `[text](url)`. Default.

# `reference`

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

Reference-style links: `[text][1]` with `[1]: url` at end of document.

---

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