diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-15 22:50:18 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-15 22:50:18 -0400 |
commit | 65cced1ddad32fdeedebd985c8d66ba155bd146f (patch) | |
tree | f8703555fee1503ac6841a608b7697616fc3e219 /example/posts | |
parent | dfad89079b64b97e099f6d86e44b6d9deb76a5d5 (diff) |
reader: Add texinfo support.
* haunt/reader/texinfo.scm: New file.
* Makefile.am (SOURCES): Add it.
* example/haunt.scm: Activate texinfo reader.
* example/posts/quux.scm: New file.
Diffstat (limited to 'example/posts')
-rw-r--r-- | example/posts/quux.texi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/example/posts/quux.texi b/example/posts/quux.texi new file mode 100644 index 0000000..ae5f0ff --- /dev/null +++ b/example/posts/quux.texi @@ -0,0 +1,32 @@ +title: Hello, Texi! +date: 2015-10-15 22:00 +tags: foo, bar +--- + +This is a test of the @emph{texinfo} reader for Haunt. I sure hope it +works well. Here is a URL to the @url{http://haunt.dthompson.us, +Haunt home page}. + +@example +(use-modules (haunt asset) + (haunt builder blog) + (haunt builder atom) + (haunt builder assets) + (haunt reader) + (haunt reader skribe) + (haunt reader texinfo) + (haunt site)) + +(site #:title "Built with Guile" + #:domain "example.com" + #:default-metadata + '((author . "Eva Luator") + (email . "eva@@example.com")) + #:readers (list texinfo-reader skribe-reader sxml-reader html-reader) + #:builders (list (blog) + (atom-feed) + (atom-feeds-by-tag) + (static-directory "images"))) +@end example + +This is another paragraph. |