Use Livebook to open this notebook and explore new ideas.
It is easy to get started, on your machine or the cloud.
<!-- livebook:{"file_entries":[{"name":"sample.edi","type":"url","url":"https://raw.githubusercontent.com/headwayio/edix/main/sample.edi"}]} -->
# Edix
```elixir
Mix.install([
{:kino, "~> 0.12.3"},
{:kino_explorer, "~> 0.1.19"},
{:edix, github: "headwayio/edix", version: "~> 0.1.6"}
])
```
## Section
```elixir
sample_edi_file = Kino.FS.file_path("sample.edi")
```
```elixir
{:ok, edix_document} = Edix.parse_file(sample_edi_file)
Kino.Shorts.tree(edix_document)
```
See source