Files
marka/registry/templates/Recipe.marka
2025-08-19 21:53:34 +02:00

53 lines
866 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: author.email
- path: datePublished
- path: prepTime
- path: cookTime
- path: recipeYield
- path: cookingMethod
- path: nutrition
- path: recipeCategory
- path: suitableForDiet
}
---
# { name | text }
{ keywords | hashtags }
{ description | text }
## Ingredients
{
path: recipeIngredient
codec: list
listTemplate: "- { . }"
}
## Steps
{
path: recipeInstructions
codec: list
listTemplate: "{ @index }. { . }"
}