diff --git a/docs/kiln.1.scd b/docs/kiln.1.scd index e0c2116..f118ebb 100644 --- a/docs/kiln.1.scd +++ b/docs/kiln.1.scd @@ -6,9 +6,7 @@ kiln - a simple static site generator # SYNOPSIS -*kiln* build++ - [-c _config_]++ - [-t _task_] +*kiln* build [-c _config_] *kiln* new _path_ @@ -20,7 +18,7 @@ kiln - a simple static site generator *kiln new* creates a new kiln site at the given path. -*kiln version* prints version information for the *kiln* program. +*kiln version* prints version information for the kiln program. # OPTIONS @@ -29,9 +27,6 @@ kiln - a simple static site generator *-c* _config_ Specifies the configuration file to use. Defaults to "config.toml". -*-t* _task_ - Specifies the task to run. If unspecified, all tasks will be run. - # OVERVIEW A kiln site is built in one or more steps called *tasks*. @@ -213,7 +208,7 @@ command to convert Gemini text to HTML. ``` # Build the site - [tasks.gemini] + [[tasks]] input = [".gmi"] output = ".gmi" template = ".gmi" @@ -221,7 +216,7 @@ command to convert Gemini text to HTML. output_dir = "public" # Export an HTML version of the site - [tasks.exporthtml] + [[tasks]] input = [".gmi"] output = ".html" template = ".gmi" @@ -235,7 +230,7 @@ content directory and HTML templates in the templates directory. This configuration makes use of the *markdown*(1) comand to convert Markdown to HTML. ``` - [tasks.markdowntohtml] + [[tasks]] input_ext = [".md"] output_ext = ".html" template_ext = ".html"