40 lines
535 B
Plaintext
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 }. { . }"
|
|
}
|