summaryrefslogtreecommitdiff
path: root/recipes/index.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/index.tmpl')
-rw-r--r--recipes/index.tmpl6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/index.tmpl b/recipes/index.tmpl
index 1e085ca..769ab05 100644
--- a/recipes/index.tmpl
+++ b/recipes/index.tmpl
@@ -39,6 +39,7 @@ from the old Wiki
#set content = $fd.readlines()
#silent $fd.close()
#set tmpl = Template('''
+#import Cheetah.Filters
#from Cheetah.Filters import Markdown
#import WikiRoot
#extends WikiRoot.WikiRoot
@@ -49,11 +50,12 @@ from the old Wiki
#def content
#transform Markdown
-$recipe
+%s
#end def
- ''', searchList=[{'PageName' : $filepath.replace('.markdown', ''), 'recipe' : ''.join($content)}])
+ ''' % (''.join($content)), searchList=[{'PageName' : $filepath.replace('.markdown', '')}])
#set fd = open('%s%s' % ($ExecuteContentPath, $filepath.replace('.markdown', '.html')), 'w')
#silent fd.write(unicode(tmpl).encode('utf-8'))
#silent fd.close()
#return True
#end def
+