Files
notes/_ARCHIVE/recipe_list.md
2026-07-14 08:05:36 -07:00

647 B

tags, obsidianUIMode, link_recipes
tags obsidianUIMode link_recipes
dashboard
recipes
preview
gyudon_beef
cheeseburger_skillet
bbw_chicken_mac_and_cheese
taco_bowl
name New Recipe
type command
action Templater: Create templates/TPL_recipe.md
dv.table(
    ["Recipe", "Prep Time", "Cook Time", "Cuisine", "Meals", "Rating"],
    
    dv.pages("#recipe").sort(p => p.file.ctime, 'desc')
    .map(p => [
        p.file.link,
        p.prep_time,
        p.cook_time,
        p.cuisine,
        p.meals ? p.meals.join(", ") : "",
        "★".repeat(p.rating) + "☆".repeat(5 - p.rating)
    ])
);