Added config.py and edited README.md to reflect new installation steps.
[cmless] / bin / config.py
CommitLineData
5dc44f45
AT
1# (c) 2017 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# See LICENSE file for copyright and license details.
3
4#####
5# CMless Configuration Options
6#####
7
8# The prefix to the website content relative to the bin/ folder which contains
9# the CMless code.
10site_path_prefix = "../site"
11
12# Full path to the markup processor which can interpret the data files in
13# site_path_prefix and output HTML. It should accept markup data on stdin and
14# output HTML on stdout.
15markup_processor = "/usr/bin/markdown"
16
17# File extension associated with the markup format used by the data files in
18# site_path_prefix.
19markup_file_extension = ".md"