aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-31 01:12:03 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-31 01:12:03 +0000
commit359f1109745afbfb1a38754576ba875a406de122 (patch)
tree1ef03822adcbf0975287308d3d8610ebb325fa81 /templates
parent858f728d433c32e73d0e17c230e3e1bdbb452508 (diff)
downloadpandoc-359f1109745afbfb1a38754576ba875a406de122.tar.gz
Fixed markdown writer to use templates.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1696 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'templates')
-rw-r--r--templates/markdown.template17
1 files changed, 16 insertions, 1 deletions
diff --git a/templates/markdown.template b/templates/markdown.template
index 1333ed77b..d5df8a606 100644
--- a/templates/markdown.template
+++ b/templates/markdown.template
@@ -1 +1,16 @@
-TODO
+$if(titleblock)$
+$titleblock$
+$endif$
+$if(header-includes)$
+$header-includes$
+$endif$
+$if(before)$
+$before$
+$endif$
+$if(toc)$
+$toc$
+$endif$
+$body$
+$if(after)$
+$after$
+$endif$