2020-11-11 00:35:56 +00:00
|
|
|
kiln(1)
|
|
|
|
|
|
|
|
# NAME
|
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
kiln - a simple static site generator
|
2020-11-11 00:35:56 +00:00
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
2021-04-20 20:00:39 +00:00
|
|
|
*kiln* build++
|
|
|
|
[-c _config_]++
|
|
|
|
[-t _task_]
|
|
|
|
|
|
|
|
*kiln* new _path_
|
|
|
|
|
|
|
|
*kiln* version
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
*kiln build* builds a kiln site.
|
|
|
|
|
|
|
|
*kiln new* creates a new kiln site at the given path.
|
|
|
|
|
|
|
|
*kiln version* prints version information for the *kiln* program.
|
2020-11-20 17:07:38 +00:00
|
|
|
|
|
|
|
# OPTIONS
|
|
|
|
|
2021-04-20 20:00:39 +00:00
|
|
|
## kiln build
|
|
|
|
|
|
|
|
*-c* _config_
|
2021-04-12 04:23:27 +00:00
|
|
|
Specifies the configuration file to use. Defaults to "config.toml".
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-20 20:00:39 +00:00
|
|
|
*-t* _task_
|
2021-04-20 20:12:52 +00:00
|
|
|
Specifies the task to run. If unspecified, all tasks will be run.
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
# OVERVIEW
|
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
A kiln site is built in one or more steps called *tasks*.
|
2021-04-21 01:37:05 +00:00
|
|
|
Tasks read content from the content directory, process the content, and write
|
|
|
|
the content to the output directory. Tasks can also be configured to copy static
|
|
|
|
content to the output directory.
|
2021-04-12 04:23:27 +00:00
|
|
|
|
2021-04-21 01:37:05 +00:00
|
|
|
The following directories are common to all tasks:
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Directory*
|
2020-11-11 00:35:56 +00:00
|
|
|
:[ *Description*
|
2021-02-28 17:17:10 +00:00
|
|
|
| content/
|
2021-04-12 04:23:27 +00:00
|
|
|
: Content directory
|
2021-03-20 06:18:15 +00:00
|
|
|
| templates/
|
2021-04-26 18:49:39 +00:00
|
|
|
: Templates directory
|
|
|
|
|
|
|
|
# CONTENT DIRECTORY
|
|
|
|
|
|
|
|
The content directory contains site content files, called *pages*, optionally
|
|
|
|
nested in subdirectories. Any file or directory in the content directory whose
|
|
|
|
name begins with "\_" will be ignored.
|
|
|
|
|
|
|
|
Pages may be preprocessed, run through templates, and postprocessed (in that
|
|
|
|
order). Each operation takes the output of the last operation as input.
|
|
|
|
|
|
|
|
; TODO: Should we remove this behavior and opt for using frontmatter instead?
|
|
|
|
Pages can specify dates in their filenames. For example, the page
|
|
|
|
content/2020-11-20-Hello-world.gmi will have a path of /Hello-world/ and a date
|
|
|
|
of November 20, 2020.
|
|
|
|
|
|
|
|
Pages with the name "index" are index pages and are treated specially.
|
|
|
|
|
|
|
|
## FRONTMATTER
|
|
|
|
|
|
|
|
Content files can specify additional metadata in frontmatter. Frontmatter is
|
|
|
|
delimited by "---" and is specified in YAML. Newlines after the closing
|
|
|
|
delimiter are removed from the content.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
---
|
|
|
|
title: Page title
|
|
|
|
date: 2021-04-24
|
|
|
|
params:
|
|
|
|
custom: value
|
|
|
|
---
|
|
|
|
|
|
|
|
Page content
|
|
|
|
```
|
|
|
|
|
|
|
|
The following keys are supported:
|
|
|
|
|
|
|
|
[[ *Key*
|
|
|
|
:[ *Description*
|
|
|
|
| title
|
|
|
|
: Page title
|
|
|
|
| date
|
|
|
|
: Page date
|
|
|
|
| params
|
|
|
|
: Extra parameters to be passed to templates
|
|
|
|
|
|
|
|
# TEMPLATES DIRECTORY
|
|
|
|
|
|
|
|
The templates directory contains templates for use when building the site.
|
|
|
|
Templates use the Go templating language. The following templates are supported:
|
|
|
|
|
|
|
|
[[ *Template*
|
|
|
|
:[ *Description*
|
|
|
|
| page.ext
|
|
|
|
: Page template
|
|
|
|
| index.ext
|
|
|
|
: Directory index template
|
|
|
|
| atom.xml
|
|
|
|
: Atom feed template
|
|
|
|
|
|
|
|
The extension of page and index templates is configurable and will replace
|
|
|
|
".ext" above. See *CONFIGURATION*.
|
|
|
|
|
|
|
|
The scope of a template is limited by the directory it is placed in. For
|
|
|
|
example, a template in the templates/blog directory will only apply to files in
|
|
|
|
content/blog.
|
|
|
|
|
|
|
|
Fallback templates can be specified in the templates/\_default directory. These
|
|
|
|
templates will apply to any files which do not have their own templates
|
|
|
|
specified.
|
|
|
|
|
|
|
|
For more information on the Go templating language, see
|
|
|
|
https://golang.org/pkg/text/template/.
|
2021-04-12 04:23:27 +00:00
|
|
|
|
|
|
|
# CONFIGURATION
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
By default, kiln looks for a configuration file named "config.toml". An
|
|
|
|
alternative configuration file can be specified with the *-c* flag. See
|
|
|
|
*OPTIONS*.
|
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
The configuration file uses the _TOML_ configuration file format. For more
|
|
|
|
information on TOML, see https://toml.io/en/v0.4.0.
|
2020-11-22 20:51:07 +00:00
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
The following keys are supported:
|
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Key*
|
2021-04-12 04:23:27 +00:00
|
|
|
:[ *Description*
|
|
|
|
| title
|
|
|
|
: Site title
|
|
|
|
| urls
|
|
|
|
: A list of site URLs
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
Site URLs may contain paths, but should not end with a trailing slash. Multiple
|
|
|
|
site URLs may be specified for sites that are available at multiple locations.
|
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
## FEEDS
|
|
|
|
|
|
|
|
Feeds can be specified in the [feeds] table of the configuration file. Keys
|
|
|
|
denote the path to the feed directory and values denote the title of the feed.
|
|
|
|
|
|
|
|
Feeds are written to the output directory plus the feed directory plus
|
|
|
|
"atom.xml".
|
|
|
|
|
|
|
|
Example feed configuration:
|
|
|
|
|
|
|
|
```
|
|
|
|
# This will generate a feed which will be written to public/blog/atom.xml
|
|
|
|
[feeds]
|
|
|
|
"/blog/" = "My blog"
|
|
|
|
```
|
|
|
|
|
2021-04-12 15:09:14 +00:00
|
|
|
## TASKS
|
|
|
|
|
|
|
|
Tasks can be specified in the [tasks] table. Each task must have a unique name.
|
|
|
|
|
|
|
|
The following keys are supported per task:
|
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Key*
|
2021-04-12 15:09:14 +00:00
|
|
|
:[ *Description*
|
|
|
|
| input_ext
|
|
|
|
: Input file extension
|
|
|
|
| output_ext
|
|
|
|
: Output file extension
|
|
|
|
| template_ext
|
|
|
|
: Template file extension
|
|
|
|
| preprocess
|
|
|
|
: Preprocess command
|
|
|
|
| postprocess
|
|
|
|
: Postprocess command
|
|
|
|
| static_dir
|
|
|
|
: Static content directory
|
|
|
|
| output_dir
|
|
|
|
: Output directory
|
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The input file extension specifies which files from the content directory to
|
2021-04-12 15:09:14 +00:00
|
|
|
process. Only files which have the same extension will be processed.
|
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The output file extension specifies the extension of the file that is written to
|
2021-04-12 15:09:14 +00:00
|
|
|
the output directory.
|
|
|
|
|
|
|
|
The template file extension specifies the extension of the templates that will
|
2021-04-26 18:49:39 +00:00
|
|
|
be used in the templates directory. If unset, no templates will be used.
|
2021-04-12 15:09:14 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The preprocess command specifies a command which will run before content is
|
|
|
|
passed to a template. It will be provided the content as standard input and
|
|
|
|
should write the processed content to standard output.
|
2021-04-12 15:09:14 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The postprocess command specifies a command which will run after templating
|
|
|
|
and before content is written to the output directory. It will be provided the
|
|
|
|
content as standard input and should write the content to standard output.
|
2021-04-12 15:09:14 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The static content directory controls which directory to use for static content.
|
2021-04-26 18:49:39 +00:00
|
|
|
If unset, no static content directory will be used. All files in this directory
|
|
|
|
will be copied to the output directory without modification. Static assets like
|
|
|
|
images should be stored in this directory.
|
2021-04-12 15:09:14 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
The output directory specifies the directory to which the output files will be
|
|
|
|
written.
|
2021-04-12 15:09:14 +00:00
|
|
|
|
|
|
|
The following configuration generates a Gemini text site and also exports an
|
2021-04-24 18:11:22 +00:00
|
|
|
HTML version of the site. This configuration makes use of the *gmnitohtml*(1)
|
2021-04-12 15:09:14 +00:00
|
|
|
command to convert Gemini text to HTML.
|
|
|
|
|
|
|
|
```
|
|
|
|
# Build the site
|
|
|
|
[tasks.gemini]
|
|
|
|
input_ext = ".gmi"
|
|
|
|
output_ext = ".gmi"
|
|
|
|
template_ext = ".gmi"
|
|
|
|
static_dir = "static"
|
|
|
|
output_dir = "public"
|
|
|
|
|
|
|
|
# Export an HTML version of the site
|
2021-04-24 18:11:22 +00:00
|
|
|
[tasks.exporthtml]
|
2021-04-26 21:50:36 +00:00
|
|
|
input_ext = ".gmi"
|
|
|
|
output_ext = ".html"
|
2021-04-12 15:09:14 +00:00
|
|
|
template_ext = ".gmi"
|
2021-04-24 18:11:22 +00:00
|
|
|
postprocess = "gmnitohtml"
|
2021-04-12 15:09:14 +00:00
|
|
|
static_dir = "static"
|
|
|
|
output_dir = "public.html"
|
|
|
|
```
|
|
|
|
|
|
|
|
The following configuration generates an HTML site from Markdown files in the
|
2021-04-26 18:49:39 +00:00
|
|
|
content directory and HTML templates in the templates directory. This
|
2021-04-12 15:09:14 +00:00
|
|
|
configuration makes use of the *markdown*(1) comand to convert Markdown to HTML.
|
|
|
|
|
|
|
|
```
|
|
|
|
[tasks.markdowntohtml]
|
|
|
|
input_ext = ".md"
|
|
|
|
output_ext = ".html"
|
2021-04-24 18:11:22 +00:00
|
|
|
template_ext = ".html"
|
2021-04-12 15:09:14 +00:00
|
|
|
preprocess = "markdown"
|
|
|
|
static_dir = "static"
|
|
|
|
output_dir = "public"
|
|
|
|
```
|
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
# TEMPLATES
|
2021-04-24 18:11:22 +00:00
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
Templates have certain data and functions available to them.
|
2021-04-12 04:23:27 +00:00
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
## TEMPLATE FUNCTIONS
|
2020-11-20 17:07:38 +00:00
|
|
|
|
|
|
|
All templates have the following functions available to them:
|
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Function*
|
2020-11-20 17:07:38 +00:00
|
|
|
:[ *Description*
|
|
|
|
| site
|
|
|
|
: Returns site metadata
|
|
|
|
|
|
|
|
## SITE METADATA
|
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
Site metadata contains the following data:
|
2020-11-20 17:07:38 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Variable*
|
2020-11-20 17:07:38 +00:00
|
|
|
:[ *Description*
|
|
|
|
| Title
|
2020-11-22 20:51:07 +00:00
|
|
|
: The title of the site.
|
2020-12-21 21:41:05 +00:00
|
|
|
| URLs
|
|
|
|
: The URLs of the site.
|
2020-11-22 20:51:07 +00:00
|
|
|
|
|
|
|
To configure these variables, see *CONFIGURATION*.
|
2020-11-11 00:35:56 +00:00
|
|
|
|
|
|
|
## PAGE TEMPLATES
|
|
|
|
|
2021-04-12 04:23:27 +00:00
|
|
|
Page templates are provided with the following data:
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Variable*
|
2020-11-11 00:35:56 +00:00
|
|
|
:[ *Description*
|
|
|
|
| Title
|
|
|
|
: The title of the page
|
|
|
|
| Date
|
|
|
|
: The date of the page
|
2020-11-20 17:07:38 +00:00
|
|
|
| Path
|
|
|
|
: Path to the page
|
2020-11-11 00:35:56 +00:00
|
|
|
| Content
|
|
|
|
: The contents of the page
|
2021-04-26 18:49:39 +00:00
|
|
|
| Params
|
|
|
|
: Extra parameters specified in frontmatter
|
2020-11-11 00:35:56 +00:00
|
|
|
|
|
|
|
## INDEX TEMPLATES
|
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
Index templates are provided with all the data that page templates are provided,
|
|
|
|
plus the following data:
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Variable*
|
2020-11-11 00:35:56 +00:00
|
|
|
:[ *Description*
|
|
|
|
| Pages
|
|
|
|
: List of pages in this directory
|
2020-11-20 17:07:38 +00:00
|
|
|
| Dirs
|
2020-11-11 00:35:56 +00:00
|
|
|
: List of subdirectories
|
|
|
|
|
2020-11-20 17:07:38 +00:00
|
|
|
## FEED TEMPLATES
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-26 18:49:39 +00:00
|
|
|
Feed templates are provided with the following data:
|
2020-11-11 00:35:56 +00:00
|
|
|
|
2021-04-24 18:11:22 +00:00
|
|
|
[[ *Variable*
|
2020-11-20 17:07:38 +00:00
|
|
|
:[ *Description*
|
|
|
|
| Title
|
|
|
|
: Title of the feed
|
|
|
|
| Path
|
|
|
|
: Path to the feed directory
|
|
|
|
| Entries
|
2020-11-22 20:51:07 +00:00
|
|
|
: List of pages in this feed
|
2020-11-11 00:35:56 +00:00
|
|
|
|