X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/16496557f0aa161f3742daf11e3240412604c0ff..5dc44f45ae19f0fd1b2b274b23f1d38fffd62a7f:/bin/config.py diff --git a/bin/config.py b/bin/config.py new file mode 100644 index 0000000..3c196a1 --- /dev/null +++ b/bin/config.py @@ -0,0 +1,19 @@ +# (c) 2017 Aaron Taylor +# See LICENSE file for copyright and license details. + +##### +# CMless Configuration Options +##### + +# The prefix to the website content relative to the bin/ folder which contains +# the CMless code. +site_path_prefix = "../site" + +# Full path to the markup processor which can interpret the data files in +# site_path_prefix and output HTML. It should accept markup data on stdin and +# output HTML on stdout. +markup_processor = "/usr/bin/markdown" + +# File extension associated with the markup format used by the data files in +# site_path_prefix. +markup_file_extension = ".md"