diff options
author | Case Duckworth | 2023-03-29 23:33:04 -0500 |
---|---|---|
committer | Case Duckworth | 2023-03-29 23:33:04 -0500 |
commit | 920b1d5df49d0bf16084150ac0994807f9c66447 (patch) | |
tree | ae0aebe7a8e3274cfee7915b3596b5a78b9d3360 /src | |
parent | Begin on executable (diff) | |
download | wikme-920b1d5df49d0bf16084150ac0994807f9c66447.tar.gz wikme-920b1d5df49d0bf16084150ac0994807f9c66447.zip |
Ready for testing
Diffstat (limited to 'src')
-rw-r--r-- | src/wikme.scm | 6 |
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. |