big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,42 @@
---
{
path: .
codec: yaml
fields:
- path: "@context"
codec: const
value: https://schema.org
- path: "@type"
codec: const
value: Recipe
- path: image
- path: author.@type
codec: const
value: Person
- path: author.name
- path: datePublished
- path: prepTime
- path: cookTime
- path: recipeYield
}
---
# { name | text,required }
{ description | text }
## Ingredients
{
path: recipeIngredient
codec: list
required: true
listTemplate: "- { . }"
}
## Steps
{
path: recipeInstructions
codec: list
required: true
listTemplate: "{ @index }. { . }"
}