view etc/chroniclerc @ 54:f042f0df39e3

2007-10-11 07:44:35 by steve Comment out most things.
author steve
date Thu, 11 Oct 2007 07:44:35 +0000
parents 393cf6c9301b
children 89747520b861
line wrap: on
line source

##
#  Configuration file for the chronicle blog compiler.
##


##
#
#  When the compiler starts it will look for both:
#
#    /etc/chroniclerc
#
#  and
#
#    ~/.chroniclerc
#
#  Both files will be read if present, the latter may override the former.
#
####




#
#  Input directory
# 
input = ./blog


#
#  The pattern of files to include
#
# pattern = *.txt
#


#
#  Output directory to write the blog to
#
output = ./output


#
#  Directory containing the templates
#
template = /usr/share/chronicle/themes/default


#
#  The number of entries to include on the index.
#
# entry-count = 10
#


#
#  Here we specify the format the blog entries are written in.
#
#  Valid choices are:
#
#   html
#   ----  
#    The blog entries aren't touched and are inserted as-is.
#
#   markdown
#   --------
#    The blog entries are converted from markdown -> html then output.
#
#   textile
#   -------
#    The blog entries are converted from textile -> html then output.
#
# format = html
#


#
#  We can disable the sidebar if we want
#
#  no-tags = 1
#  no-archive = 1
#


#
#  The filename to use for tag links
#
# filename = index.html
#


#
#  Suffix to use for single entries.
#
# suffix = .html


#
#  URL prefix, if any.
#
# url_prefix = http://example.com/


#
#  The title for the Blog
#
# blog_title    = Steve Kemp's Blog
# blog_subtitle = Free Software & Debian

#
#  A command to run pre-build
#
# pre-build = cvs update -A -d


#
#  A command to run post-build.
#
# post-build = scp -r output/* user@host:/some/path
#