changeset 247:3e6869f76b8d

Add the blatter config and framework files.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Sep 2009 20:14:34 -0400
parents 46c13f6b7709
children 53a5e100b497
files blatter.ini filters.py ignore
diffstat 3 files changed, 29 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/blatter.ini	Wed Sep 23 20:14:34 2009 -0400
@@ -0,0 +1,19 @@
+[blatter]
+
+static_dir=static
+template_dir=templates
+dynamic_dir=content
+output_dir=out
+
+# 'publish' target can be configured or use --destination
+#publish_location=/local/path
+
+# 'serve' options
+index_document=index.html
+url_prefix=/
+
+filters=markdown
+
+[filter.markdown]
+name=markdown
+function=filters.mdown
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/filters.py	Wed Sep 23 20:14:34 2009 -0400
@@ -0,0 +1,7 @@
+import markdown as _markdown
+from jinja2 import Markup
+
+md = _markdown.Markdown(extensions=['toc'], safe_mode=False)
+
+def mdown(value):
+    return Markup(md.convert(value))
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ignore	Wed Sep 23 20:14:34 2009 -0400
@@ -0,0 +1,3 @@
+.hg
+.DS_Store
+README
\ No newline at end of file