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 ae16ada commit 23e3481
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hugo.scm
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

(include "../schematic/lib/json.scm")
(include "../schematic/lib/md.scm")
(include "../schematic/lib/hugo.scm")

(define (main args)
(let-args (cdr args)
Expand Down Expand Up @@ -91,15 +92,15 @@
; header

(define (write-dish-header dish out cats)
(write-string "---" out)
(hugo-header-line out)
(newline out)
(write-dish-title dish out)
(write-dish-cats dish out cats)
(if (tags dish)
(write-dish-tags dish out))
(write-string #"showDate: false" out)
(newline out)
(write-string "---" out)
(hugo-header-line out)
(news out))

(define (write-dish-title dish out)
Expand Down

0 comments on commit 23e3481

Please sign in to comment.