Skip to content

Cookware

You can define the tools and equipment needed for a recipe using the # symbol.

Like an @ingredient, if the #cookware name is a single word and you only need one of it, you can omit the braces {}.

Heat the #pan.

If the name contains spaces or you want to specify a quantity, you must use braces {}.

Take a #baking sheet{}.

Unlike an @ingredient (which can have complex units like grams or cups), #cookware has a strict syntax separation between its count and its physical description.

The braces {} are strictly reserved for the number of items you need. This must be a pure integer.

#pan              // Defaults to 1 pan
#ramekins{4}      // 4 ramekins

To specify the size, dimensions, material, or any other description of the #cookware, you must use parentheses ().

#pan(20cm)                  // 1 pan, sized 20cm
#baking sheet{2}(non-stick) // 2 baking sheets, non-stick

Unlike an @ingredient which usually scales linearly by default, #cookware scaling behavior depends on how the quantity is specified:

FormatExampleBehaviorDescription
No quantity#panFixedDoes not scale.
With quantity#pan{1} or #ramequins{4}ScalableDoubling the recipe asks for 2 pans or 8 ramequins.
Explicit Fixed#=pan{2}FixedEven if you double the recipe, it will still only ask for 2 pans.

#cookware supports many of the same advanced syntax features as an @ingredient. For a detailed deep-dive on these concepts, refer to the Ingredients documentation.

You can use the Optional (?), Hidden (-), Fixed (=), and Reference (&) modifiers on #cookware.

Use a #?wok if you have one, otherwise a #-large pan will do.

Return to the #&wok to finish the sauce.

You can rename #cookware for display purposes using the : operator.

Use the #cast iron skillet:skillet{}.

You can define acceptable alternatives using the pipe | operator.

Cook in a #pan|#wok.