aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-08-09 22:30:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-08-09 22:32:22 -0700
commit8d65651309ba99b0cd8f725f91fdada62f5eb955 (patch)
treee7adfe3986883e16aac416a8eb896c261fee702e /src/Text/Pandoc
parent05216d29198618d7490cc5008ff263dfa60475c0 (diff)
downloadpandoc-8d65651309ba99b0cd8f725f91fdada62f5eb955.tar.gz
Changed strict to markdown_strict.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Templates.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Templates.hs b/src/Text/Pandoc/Templates.hs
index 899f6510a..4f5ad54bd 100644
--- a/src/Text/Pandoc/Templates.hs
+++ b/src/Text/Pandoc/Templates.hs
@@ -92,8 +92,11 @@ getDefaultTemplate user writer = do
"native" -> return $ Right ""
"json" -> return $ Right ""
"docx" -> return $ Right ""
- "odt" -> getDefaultTemplate user "opendocument"
"epub" -> return $ Right ""
+ "odt" -> getDefaultTemplate user "opendocument"
+ "markdown_strict" -> getDefaultTemplate user "markdown"
+ "multimarkdown" -> getDefaultTemplate user "markdown"
+ "markdown_github" -> getDefaultTemplate user "markdown"
_ -> let fname = "templates" </> "default" <.> format
in E.try $ readDataFile user fname