Files
marka/registry/templates/recipe.marka
2025-08-17 01:21:15 +02:00

40 lines
535 B
Plaintext

---
{
path: .
codec: yaml
fields:
- path: name
- 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
item:
template: "- { . }"
}
## Steps
{
path: recipeInstructions
codec: list
required: true
item:
template: "{ @index }. { . }"
}