# `Beamchmark.Formatters.HTML`
[🔗](https://github.com/membraneframework/beamchmark/blob/v1.4.2/lib/beamchmark/formatters/html.ex#L1)

The module formats `Beamchmark.Suite` and outputs it to an HTML file.

# `options_t`

```elixir
@type options_t() :: [
  output_path: Path.t(),
  auto_open?: boolean(),
  inline_assets?: boolean()
]
```

Configuration for `Beamchmark.Formatters.HTML`.
* `output_path` – path to the file, where the report will be saved. Defaults to `"index.html"`.
* `auto_open?` – if `true`, opens the report in system's default browser. Defaults to `true`.
* `inline_assets?` – if `true`, pastes contents of `.css` and `.js` assets directly into HTML. Defaults to `false`.

---

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