diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-11-11 20:11:45 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-11-11 20:11:55 -0500 |
commit | ff50e8c698e1ec5b9007e3bc4308109a69af2b41 (patch) | |
tree | 37765ed4bdd4bc9e4c540493dd92f624bdd59c86 /example | |
parent | e82384892823eda0a1ffb1e6b7cbd1f5172b53dc (diff) |
Add Sourcehut publisher to example site.
Diffstat (limited to 'example')
-rw-r--r-- | example/haunt.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/example/haunt.scm b/example/haunt.scm index 07f7601..2527c89 100644 --- a/example/haunt.scm +++ b/example/haunt.scm @@ -4,6 +4,7 @@ (haunt builder assets) (haunt builder rss) (haunt publisher rsync) + (haunt publisher sourcehut) (haunt reader) (haunt reader skribe) (haunt reader texinfo) @@ -21,4 +22,6 @@ (atom-feeds-by-tag) (rss-feed) (static-directory "images")) - #:publishers (list (rsync-publisher #:destination "/tmp/haunt-example"))) + #:publishers (list (rsync-publisher #:name 'rsync + #:destination "/tmp/haunt-example") + (sourcehut-publisher #:name 'sourcehut))) |