📖 README.md

JSON-LD Recipe parser

Parses JSON-LD to a common recipe format.

Usage

// Get a `JsonDocument` from where ever
var document = JsonSerializer.Deserialize<JsonDocument>(jsonString);

// Parse to common recipe format
var recipe = Recipe.Parse(document);