README.md
+12
-0
diff --git a/README.md b/README.md
index 0299548..0646f01 100644
@@ -1 +1,13 @@
# JSON-LD Recipe parser
Parses JSON-LD to a common recipe format.
## Usage
```cs
// Get a `JsonDocument` from where ever
var document = JsonSerializer.Deserialize<JsonDocument>(jsonString);
// Parse to common recipe format
var recipe = Recipe.Parse(document);
```