# `LiveLoad.Reporter.Markdown`
[🔗](https://github.com/probably-not/live-load/blob/v0.1.1/lib/live_load/reporter/markdown.ex#L1)

`LiveLoad.Reporter.Markdown` is a very very simple Markdown-based reporter
that can be used to just inspect the outputs of a run in a basic markdown report.

# `render!`

```elixir
@spec render!(
  results :: %{required(LiveLoad.Scenario.t()) =&gt; LiveLoad.scenario_result()}
) :: binary()
```

Render a markdown report from the result of `LiveLoad.run/1`.

Returns a `t:binary/0` which can then be used to write to a file, served over a web server, etc.

