diff options
author | Starfall <us@starfall.systems> | 2021-10-22 22:14:41 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-12-05 10:00:27 -0600 |
commit | 5b63c384ef8e100518ff50b9cb023ac07265df35 (patch) | |
tree | 2fb7c335f6b050e3c2bce2573f37881d62780021 /sample/strike.ini | |
parent | 86b9f8635be129da9b367aec9f4d907e9785cf0e (diff) |
strike: set goals for config file format
Diffstat (limited to 'sample/strike.ini')
-rw-r--r-- | sample/strike.ini | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sample/strike.ini b/sample/strike.ini new file mode 100644 index 0000000..4ccc027 --- /dev/null +++ b/sample/strike.ini @@ -0,0 +1,21 @@ +[Input] +# Directory with all of the markup files that you want Strike to process. +# Location should be relative to this config file. +# For now, Strike will only process files in this directory and not in any subdirectories. +directory = blog +# Files in the input directory to exclude. +# Location should be relative to the default input directory. +excludes = exclude.html + also-exclude.html + +[Templates] +# For now, Strike only supports using a single template, named default. +default = template.html + +[Output] +# Directory to put the output into. +# When Strike processes subdirectories, this will become the base directory - output will be placed into the same subdirectory relative to this as it was to the input directory. +directory = html + +# That's all for now. In the future, we hope to allow the use of multiple templates, +# letting you choose individual directories and files for each template. |