about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorCase Duckworth2023-03-29 23:33:04 -0500
committerCase Duckworth2023-03-29 23:33:04 -0500
commit920b1d5df49d0bf16084150ac0994807f9c66447 (patch)
treeae0aebe7a8e3274cfee7915b3596b5a78b9d3360 /src
parentBegin on executable (diff)
downloadwikme-920b1d5df49d0bf16084150ac0994807f9c66447.tar.gz
wikme-920b1d5df49d0bf16084150ac0994807f9c66447.zip
Ready for testing
Diffstat (limited to 'src')
-rw-r--r--src/wikme.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wikme.scm b/src/wikme.scm index 2d476ca..752aa8b 100644 --- a/src/wikme.scm +++ b/src/wikme.scm
@@ -37,10 +37,10 @@
37 37
38(define (directory->wiki directory 38(define (directory->wiki directory
39 #!key 39 #!key
40 base-url
41 destination-directory
42 page-template
40 (extension "md") 43 (extension "md")
41 (base-url "https://www.example.com")
42 (destination-directory (make-pathname directory "out"))
43 (page-template (make-pathname directory "template.html"))
44 (file-transformers (list indexify)) 44 (file-transformers (list indexify))
45 (transformers (list cmark->html wikify-links))) 45 (transformers (list cmark->html wikify-links)))
46 ;;; Build a <wiki> out of the markdown files in DIRECTORY. 46 ;;; Build a <wiki> out of the markdown files in DIRECTORY.