dots


dots / misc / obsidian / clipper / templates
xxwhirlpool  ·  2026-04-09

recipes-clipper.json

 1{
 2	"schemaVersion": "0.1.0",
 3	"name": "Recipes",
 4	"behavior": "create",
 5	"noteContentFormat": "{{description}}\n\n## Ingredients\n\n{{schema:recipeIngredient|list:task}}\n\n## Instructions\n\n{{schema:recipeInstructions[*].text|list:task}}\n\n## Nutrition\n\n{{schema:@Recipe:nutrition|uncamel|capitalize|table|replace:(\"@type\":\"Nutrient\",\"Nutrition information\":\"Quantity\")}}",
 6	"properties": [
 7		{
 8			"name": "title",
 9			"value": "{{title}}",
10			"type": "text"
11		},
12		{
13			"name": "image",
14			"value": "{{image}}",
15			"type": "text"
16		},
17		{
18			"name": "cuisine",
19			"value": "{{schema:recipeCuisine}}",
20			"type": "multitext"
21		},
22		{
23			"name": "url",
24			"value": "{{url}}",
25			"type": "multitext"
26		},
27		{
28			"name": "created",
29			"value": "{{date}}",
30			"type": "date"
31		},
32		{
33			"name": "tags",
34			"value": "clippings-recipes",
35			"type": "multitext"
36		}
37	],
38	"triggers": [
39		"schema:@Recipe"
40	],
41	"noteNameFormat": "{{title}}",
42	"path": "clippings/recipes"
43}