Files
marka/registry/templates/Recipe.marka
Max Richter b13d5015f4 wip
2025-09-25 16:41:26 +02:00

50 lines
801 B
Plaintext

---
{
path: .
codec: yaml
fields:
- path: "_schema"
codec: const
value: Recipe
hidden: true
- path: "_type"
codec: const
value: Recipe
hidden: true
- path: image
- path: author._type
codec: const
hidden: true
value: Person
- path: author.name
- path: author.email
- path: datePublished
- path: prepTime
- path: cookTime
- path: recipeYield
- path: cookingMethod
- path: nutrition
- path: recipeCategory
- path: suitableForDiet
}
---
# { name | text }
{ keywords | hashtags,optional }
{ description | text }
## Ingredients
{
path: recipeIngredient
codec: list
listTemplate: "- { . }"
}
## Steps
{
path: recipeInstructions
codec: list
listTemplate: "{ @index }. { . }"
}