Go to file
Marcel Otto c2865c8b04 Add .editorconfig 2017-06-25 02:06:24 +02:00
config json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
lib core: RDF.Dataset.graphs returns a list of graphs 2017-06-05 02:41:44 +02:00
test json_ld: some of the URI.merge problems are solved with Elixir 1.4.4 2017-06-09 04:14:46 +02:00
.editorconfig Add .editorconfig 2017-06-25 02:06:24 +02:00
.gitignore json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
LICENSE.md json_ld: add license 2016-12-08 00:27:54 +01:00
README.md json_ld: initial JSON-LD context processing and expansion implementation 2017-02-10 15:16:51 +01:00
mix.exs Remove umbrella settings and depend on rdf via local path until hex release 2017-06-11 17:39:51 +02:00
mix.lock Remove umbrella settings and depend on rdf via local path until hex release 2017-06-11 17:39:51 +02:00

README.md

JSON.LD

An implementation of the JSON-LD standard.

Installation

The package can be installed by adding json_ld to your list of dependencies in mix.exs:

```elixir
def deps do
  [
    {:json_ld, "~> 0.1.0"}
  ]
end
```

Then, update your dependencies:

$ mix deps.get

Usage