You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
2.1 KiB
138 lines
2.1 KiB
3 years ago
|
---
|
||
|
|
||
|
ServingSize: 2
|
||
|
cssclass: recipeTable
|
||
|
Alias: []
|
||
|
Tag: []
|
||
|
Date: 2021-09-21
|
||
|
DocType: "Recipe"
|
||
|
Hierarchy: "NonRoot"
|
||
|
location: [51.514678599999996, -0.18378583926867909]
|
||
|
CollapseMetaTable: Yes
|
||
|
Meta:
|
||
|
IsFavourite: False
|
||
|
Rating: 4
|
||
|
Recipe:
|
||
|
Courses: "Main Dish"
|
||
|
Categories: Fish
|
||
|
Collections: Modern
|
||
|
Source: https://www.food.com/recipe/chili-lime-cumin-cod-131528
|
||
|
PreparationTime:
|
||
|
CookingTime: 17
|
||
|
Ingredients:
|
||
|
- 2 lbs fresh cod fish fillets
|
||
|
- 1 teaspoon chili powder
|
||
|
- 0.5 teaspoon dried parsley or 1/2 teaspoon dried cilantro
|
||
|
- 0.5 teaspoon salt
|
||
|
- 2 tablespoons butter
|
||
|
- 0.25 teaspoon cumin
|
||
|
- 1 lime, juice of
|
||
|
|
||
|
---
|
||
|
|
||
|
Parent:: [[@Recipes|Recipes]]
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
```button
|
||
|
name Edit Recipe parameters
|
||
|
type command
|
||
|
action MetaEdit: Run MetaEdit
|
||
|
id EditMetaData
|
||
|
```
|
||
|
^button-ChilliLimenCuminCodEdit
|
||
|
|
||
|
|
||
|
```button
|
||
|
name Save
|
||
|
type command
|
||
|
action Save current file
|
||
|
id Save
|
||
|
```
|
||
|
^button-ChilliLimenCuminCodNSave
|
||
|
|
||
|
|
||
|
|
||
|
 
|
||
|
|
||
|
# Chilli Lime and Cumin Cod
|
||
|
|
||
|
 
|
||
|
|
||
|
```toc
|
||
|
style: number
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Practical Informations
|
||
|
|
||
|
| |
|
||
|
|-|-
|
||
|
**Courses**: | `$=dv.current().Recipe.Courses`
|
||
|
**Categories**: | `$=dv.current().Recipe.Categories`
|
||
|
**Collections**: | `$=dv.current().Recipe.Collections`
|
||
|
**Serving size**: | `$=dv.current().ServingSize`
|
||
|
**Cooking time**: | `$=dv.current().Recipe.CookingTime` min
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Ingredients
|
||
|
|
||
|
 
|
||
|
|
||
|
```dataviewjs
|
||
|
var ing = [];
|
||
|
for (var i = 0; i < dv.current().Ingredients.length; i++) {
|
||
|
var name = dv.current().Ingredients[i].replace(dv.current().Ingredients[i].split(" ")[0] + " " + dv.current().Ingredients[i].split(" ")[1], "");
|
||
|
var unit = dv.current().Ingredients[i].split(" ")[1];
|
||
|
var amount = dv.current().Ingredients[i].split(" ")[0];
|
||
|
ing[i] = "🥣 " + (amount / 2 * dv.current().ServingSize) + " " + unit + " <b>" + name + "</b>"
|
||
|
}
|
||
|
dv.list(ing)
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
 
|
||
|
1. Heat oven to 450F.
|
||
|
|
||
|
|
||
|
2. Coat oven safe pan with oil or cooking spray.
|
||
|
|
||
|
|
||
|
3. Place cod in pan.
|
||
|
|
||
|
|
||
|
4. Sprinkle chili powder, herb and salt.
|
||
|
|
||
|
|
||
|
5. Roast 5-7 minutes until opaque.
|
||
|
|
||
|
|
||
|
6. Melt butter in small saucepan.
|
||
|
|
||
|
|
||
|
7. Add cumin and lime juice and cook for 1 more minute.
|
||
|
|
||
|
|
||
|
8. Before serving drizzle butter mixture over cod.
|
||
|
|
||
|
 
|
||
|
 
|