Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
Update hugo.scm
Browse files Browse the repository at this point in the history
  • Loading branch information
technicat committed Aug 17, 2023
1 parent 48c30a4 commit ae16ada
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hugo.scm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
(i "i|image")
(d "d|dishes")
(p "p|places")
(r "r|restaurants")
(v "v|verbose")
. restargs)
(if (not h)
Expand All @@ -30,7 +31,11 @@
(add-words words dishes)
(if i (copy-images))
(if d (if v (print dishes)
(write-dishes dishes)))))))
(write-dishes dishes)))
(if p (if v (print phrases)
(write-places phrases)))
(if r (if v (print places)
(write-places places)))))))

(define (add-words words dishes)
(for-each (lambda (word)
Expand Down

0 comments on commit ae16ada

Please sign in to comment.