Files
marka/registry/templates/Recipe.marka
2025-08-19 17:20:24 +02:00

47 lines
714 B
Plaintext

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