diff --git a/README.md b/README.md index f78dec2..55fd39f 100644 --- a/README.md +++ b/README.md @@ -9,19 +9,23 @@ JSON on STDOUT. ## Installation -If [available in Hex](https://hex.pm/docs/publish), the package can be installed as: +If [available in Hex](https://hex.pm/packages/std_json_io), the package can be installed as: 1. Add `std_json_io` to your list of dependencies in `mix.exs`: - def deps do - [{:std_json_io, "~> 0.1.0"}] - end +```elixir + def deps do + [{:std_json_io, "~> 0.1.0"}] + end +``` 2. Ensure `std_json_io` is started before your application: - def application do - [applications: [:std_json_io]] - end +```elixir + def application do + [applications: [:std_json_io]] + end +``` ### Setup