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 b47a1e9 commit 18fa8e8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions hugo.scm
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,7 @@
(let ((tags (tags dish)))
(if tags
(let ((qtags (map (lambda (tag) (tag-display tag)) tags)))
(write-string #"tags: [~(comma-list qtags)]" out)))
(newline out)))
(hugo-tags (comma-list qtags) out)))))

(define (write-dish-cats dish out cats)
(let ((tags (tags dish)))
Expand All @@ -126,8 +125,7 @@
(lset-intersection equal?
(vector->list cats )
(vector->list tags)))))
(write-string #"categories: [~(comma-list qcats)]" out)
(newline out)))))
(hugo-cats (comma-list qcats) out)))))

(define (tag-display tag)
(let ((word #false)) ;(hash-table-get words tag)))
Expand Down

0 comments on commit 18fa8e8

Please sign in to comment.