diff options
author | Arun Isaac | 2023-05-30 22:03:34 +0100 |
---|---|---|
committer | Arun Isaac | 2023-05-30 22:03:34 +0100 |
commit | a4b5d4c4193d4a048a10a5e2ddec63e364cf6520 (patch) | |
tree | 9121388346da3568417902b40b31b93be5765962 | |
parent | a6e29bc4901de650985640d12ab0f8f0014c48db (diff) | |
download | guix-forge-a4b5d4c4193d4a048a10a5e2ddec63e364cf6520.tar.gz guix-forge-a4b5d4c4193d4a048a10a5e2ddec63e364cf6520.tar.lz guix-forge-a4b5d4c4193d4a048a10a5e2ddec63e364cf6520.zip |
tissue.scm: Add current directory to load path.
* tissue.scm: Add current directory to load path.
-rw-r--r-- | tissue.scm | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ (use-modules (tissue skribilo)) +;; Add current directory to load path so that (doc skribilo) can be +;; found when indexing doc/forge.skb. +(add-to-load-path (dirname (current-filename))) + (tissue-configuration #:indexed-documents (append (map (lambda (filename) (slot-set (read-gemtext-issue filename) |