Commit: aff6413
Parent: 9543f88

Add "documentation"

Mårten Åsberg committed on 2026-06-28 at 06:43
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);
```