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 8, 2023
1 parent bbc1b17 commit 25bc90c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion hugo.scm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
(v "v|verbose")
. restargs)
(if (not h)
(let ((dishes (read-dishes)))
(let ((dishes (read-dishes))
(words (read-words))
(phrases (read-phrases))
(places (read-places)))
(if i (copy-images))
(if v (print dishes))
(if o (write-dishes (reverse dishes)))))))
Expand Down Expand Up @@ -239,3 +242,12 @@

(define (read-cats)
(read-json "assets/json/categories.json"))

(define (read-words)
(read-json "assets/json/words.json"))

(define (read-places)
(read-json "assets/json/countries.json"))

(define (read-phrases)
(read-json "assets/json/phrases.json"))

0 comments on commit 25bc90c

Please sign in to comment.