diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-07-26 22:47:14 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-07-26 23:15:09 -0400 |
commit | 2f6b06dd22f6f117d0a52e03d90f41a810889519 (patch) | |
tree | 072c67d2dbf86d6566d72485c60ffdf06672764d /README.md | |
parent | 348e16e264869aee29c36f6b25a48b81b871169d (diff) |
asset: Add brief documentation.
* haunt/asset.scm: Add introductory comment.
* README.md (Example Configuration): Add 'directory-assets' example.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -23,7 +23,8 @@ Example Configuration (use-modules (haunt site) (haunt reader) (haunt builder blog) - (haunt builder atom)) + (haunt builder atom) + (haunt builder assets)) (site #:title "Built with Guile" #:domain "example.com" @@ -33,7 +34,8 @@ Example Configuration #:readers (list sxml-reader html-reader) #:builders (list (blog) (atom-feed) - (atom-feeds-by-tag))) + (atom-feeds-by-tag) + (static-directory "images")) ``` Usage |