CINXE.COM

Haunt — dthompson

<!DOCTYPE html><head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><title>Haunt — dthompson</title><link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml" /><link rel="stylesheet" href="/css/reset.css" /><link rel="stylesheet" href="/css/fonts.css" /><link rel="stylesheet" href="/css/dthompson.css" /></head><body><div class="container"><nav><ul><li><a href="/">David Thompson</a></li></ul><ul><li><a href="/about.html">About</a></li><li><a href="/index.html">Blog</a></li><li><a href="/projects.html">Projects</a></li></ul></nav><h1>Haunt</h1><p>Haunt is a simple, functional, hackable static site generator that gives authors the ability to treat websites as Scheme programs.</p><img class="centered-image" src="/images/haunt/logo.png" alt="crudely drawn ghost" /><p>By giving authors the full expressive power of Scheme, they are able to control every aspect of the site generation process. Haunt provides a simple, functional build system that can be easily extended for this purpose.</p><p>Haunt has no opinion about what markup language authors should use to write posts, though it comes with support for the popular Markdown format. Likewise, Haunt has no opinion about how authors structure their sites. Though it comes with support for building simple blogs or Atom feeds, authors should feel empowered to tweak, replace, or create builders to do things that aren't provided out-of-the-box.</p><h2>Usage</h2><p>Here's what a simple Haunt configuration looks like:</p><pre><code><span class="syntax-open">(</span><span class="syntax-symbol">use-modules</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">asset</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">builder</span> <span class="syntax-symbol">blog</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">builder</span> <span class="syntax-symbol">atom</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">builder</span> <span class="syntax-symbol">assets</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">reader</span> <span class="syntax-symbol">commonmark</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">haunt</span> <span class="syntax-symbol">site</span><span class="syntax-close">)</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">site</span> <span class="syntax-keyword">#:title</span> <span class="syntax-string">&quot;Built with Guile&quot;</span> <span class="syntax-keyword">#:domain</span> <span class="syntax-string">&quot;example.com&quot;</span> <span class="syntax-keyword">#:default-metadata</span> <span class="syntax-symbol">'</span><span class="syntax-open">(</span><span class="syntax-open">(</span><span class="syntax-symbol">author</span> <span class="syntax-symbol">.</span> <span class="syntax-string">&quot;Eva Luator&quot;</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">email</span> <span class="syntax-symbol">.</span> <span class="syntax-string">&quot;eva@example.com&quot;</span><span class="syntax-close">)</span><span class="syntax-close">)</span> <span class="syntax-keyword">#:readers</span> <span class="syntax-open">(</span><span class="syntax-symbol">list</span> <span class="syntax-symbol">commonmark-reader</span><span class="syntax-close">)</span> <span class="syntax-keyword">#:builders</span> <span class="syntax-open">(</span><span class="syntax-symbol">list</span> <span class="syntax-open">(</span><span class="syntax-symbol">blog</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">atom-feed</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">atom-feeds-by-tag</span><span class="syntax-close">)</span> <span class="syntax-open">(</span><span class="syntax-symbol">static-directory</span> <span class="syntax-string">&quot;images&quot;</span><span class="syntax-close">)</span><span class="syntax-close">)</span><span class="syntax-close">)</span> </code></pre><p>In a new directory, save the above to a file named <code>haunt.scm</code>.</p><p>Create subdirectories named <code>posts</code> and <code>images</code>.</p><p>Add the following to a new file named <code>posts/hello.md</code>:</p><pre><code>title: First post! date: 2018-03-13 18:00 tags: hello summary: hello! --- Hello, world! </code></pre><p>Run <code>haunt build</code> to build the site.</p><p>Run <code>haunt serve</code> to a launch a web server to preview your work.</p><p>Open <a href="http://localhost:8080">http://localhost:8080</a> in your web browser and smile, because you've just generated your first Haunt site!</p><p>Check out other sites built with Haunt over at <a href="https://awesome.haunt.page/">awesome.haunt.page</a>!</p><h2>Documentation</h2><p><a href="https://files.dthompson.us/docs/haunt/latest">View the reference manual</a></p><h2>Releases</h2><ul><li>2024-02-19 — 0.3.0 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.3.0.tar.gz">haunt-0.3.0.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.3.0.tar.gz.asc">GPG signature</a></li><li>2022-01-26 — 0.2.6 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.6.tar.gz">haunt-0.2.6.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.6.tar.gz.asc">GPG signature</a></li><li>2021-04-15 — 0.2.5 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.5.tar.gz">haunt-0.2.5.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.5.tar.gz.asc">GPG signature</a></li><li>2018-11-29 — 0.2.4 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.4.tar.gz">haunt-0.2.4.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.4.tar.gz.asc">GPG signature</a></li><li>2018-11-25 — 0.2.3 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.3.tar.gz">haunt-0.2.3.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.3.tar.gz.asc">GPG signature</a></li><li>2018-03-10 — 0.2.2 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.2.tar.gz">haunt-0.2.2.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.2.tar.gz.asc">GPG signature</a></li><li>2017-01-23 — 0.2.1 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.1.tar.gz">haunt-0.2.1.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.1.tar.gz.asc">GPG signature</a></li><li>2016-04-24 — 0.2 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.tar.gz">haunt-0.2.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.2.tar.gz.asc">GPG signature</a></li><li>2015-08-08 — 0.1 — <a href="https://files.dthompson.us/releases/haunt/haunt-0.1.tar.gz">haunt-0.1.tar.gz</a> — <a href="https://files.dthompson.us/releases/haunt/haunt-0.1.tar.gz.asc">GPG signature</a></li></ul><h2>Requirements</h2><ul><li>GNU Guile &gt;= 2.0</li><li>guile-commonmark (for Markdown support, optional)</li><li>guile-reader (for Skribe support, optional)</li></ul><h2>Installation</h2><p>To install Haunt with the GNU Guix package manager, run:</p><pre>guix install haunt</pre><p>To build and install Haunt from source, run:</p><pre>wget https://files.dthompson.us/releases/haunt/haunt-0.3.0.tar.gz tar xf haunt-0.3.0.tar.gz cd haunt-0.3.0 ./configure make make install</pre><h2>License</h2><p>GNU GPLv3+</p><h2>Git Repository</h2><p>Haunt is developed using the Git version control system. The official repository is hosted at <a href="https://git.dthompson.us/haunt.git">https://git.dthompson.us/haunt.git</a>.</p><p>To clone the repository, run:</p><pre>git clone https://git.dthompson.us/haunt.git</pre><h2>Community</h2><p>Real-time discussion for Haunt can be found on the <code>#guile</code> channel on the <a href="https://libera.chat">Libera.chat</a> IRC network</p><h2>Contributing</h2><p>Send patches and bug reports to <a href="mailto:davet@gnu.org">davet@gnu.org</a>.</p><footer class="text-center"><p class="copyright">© 2025 David Thompson<a class="cc-button" href="https://creativecommons.org/licenses/by-sa/4.0/"><img src="https://licensebuttons.net/l/by-sa/4.0/80x15.png" /></a></p><p>The text and images on this site are free culture works available under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution Share-Alike 4.0 International</a> license.</p><p>This website is built with <a href="https://dthompson.us/projects/haunt.html">Haunt</a>, a static site generator written in <a href="https://gnu.org/software/guile">Guile Scheme</a>.</p><p>Follow me on <a rel="me" href="https://toot.cat/@dthompson">Mastodon</a>.</p></footer></div></body>

Pages: 1 2 3 4 5 6 7 8 9 10