diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-18 00:37:05 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-19 22:38:37 +0200 |
commit | 252a4f525210d1b5a0dca71c337695a117c06156 (patch) | |
tree | afe576f4ead466208a2716bda2e16c9dd6bd244f /cook/debug.sld | |
parent | 46402db0fceee23295547c5b47990bc68a1619d9 (diff) |
parse: add support for modern fenced metadata
Diffstat (limited to 'cook/debug.sld')
-rw-r--r-- | cook/debug.sld | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cook/debug.sld b/cook/debug.sld index 5b6ddb2..bb0cfbd 100644 --- a/cook/debug.sld +++ b/cook/debug.sld @@ -25,12 +25,10 @@ (list 'ingredient name (cook->list amount))) (($ <timer> name amount) (list 'timer name (cook->list amount))) - (($ <metadata-line> key value) - (list 'metadata-line key value)) + (($ <metadata> lines) + (list 'metadata lines)) (($ <step> elements) (list 'step (map cook->list elements ))) - ((? hash-table? y) - (list 'metadata (cook->list (hash-table->alist y)))) (($ <recipe> metadata body) (list 'recipe (cook->list metadata) (cook->list body))) ((? list? y) |