diff options
author | xengineering <me@xengineering.eu> | 2023-04-22 17:38:46 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-22 17:38:46 +0200 |
commit | cff4718b1acd5a34e8dceaf4d21d4bc11c0de8d6 (patch) | |
tree | 1789e3994f9c4611d9f83e68d34595062468a529 /data/storage/recipes/1/text | |
parent | c353a04d2dbc48a4abbce3b2fa90990a8bc200ad (diff) | |
download | ceres-cff4718b1acd5a34e8dceaf4d21d4bc11c0de8d6.tar ceres-cff4718b1acd5a34e8dceaf4d21d4bc11c0de8d6.tar.zst ceres-cff4718b1acd5a34e8dceaf4d21d4bc11c0de8d6.zip |
Convert example recipes to JSON
Diffstat (limited to 'data/storage/recipes/1/text')
-rw-r--r-- | data/storage/recipes/1/text | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/data/storage/recipes/1/text b/data/storage/recipes/1/text index 3489b2c..ecf26dc 100644 --- a/data/storage/recipes/1/text +++ b/data/storage/recipes/1/text @@ -1,6 +1,13 @@ -# Second recipe - -Important steps: - -* cook it -* eat it +{ + "title":"Very delicious stuff", + "portions": 4, + "url":"https://example.org", + "steps":[ + { + "text":"Bake the frozen pizza!", + "ingredients":[ + {"type":"pizza", "amount":"4 pieces"} + ] + } + ] +} |