Files
marka/registry/templates/recipe.marka
2025-08-17 00:46:45 +02:00

51 lines
745 B
Plaintext

---
{
path: .
codec: yaml
fields:
- path: name
codec: text
required: true
- path: image
codec: text
required: true
- path: author.@type
codec: const
value: Person
- path: author.name
codec: text
- path: datePublished
codec: text
- path: description
codec: text
- path: prepTime
codec: text
- path: cookTime
codec: text
- path: recipeYield
codec: text
}
---
# { name | text,required }
{ description | text }
## Ingredients
{
path: recipeIngredient
codec: list
required: true
item:
template: "- { . }"
}
## Steps
{
path: recipeInstructions
codec: list
required: true
item:
template: "{ @index }. { . }"
}