aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2013-10-12 21:25:58 -0700
committerJohn MacFarlane <[email protected]>2013-10-12 21:25:58 -0700
commit447ddb6cfb1705a2d100f99b1cc7eb6ef562f822 (patch)
treee37f03e5f4721966cbb6f086ece93373302938ac
parent695473da66e61307fda68c1e91e5b59c7b06a948 (diff)
Don't look for template for .fb2 or .sable.
-rw-r--r--src/Text/Pandoc/Templates.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Templates.hs b/src/Text/Pandoc/Templates.hs
index 7f744c7e1..e2da2aff7 100644
--- a/src/Text/Pandoc/Templates.hs
+++ b/src/Text/Pandoc/Templates.hs
@@ -127,6 +127,8 @@ getDefaultTemplate user writer = do
case format of
"native" -> return $ Right ""
"json" -> return $ Right ""
+ "sable" -> return $ Right ""
+ "fb2" -> return $ Right ""
"docx" -> return $ Right ""
"odt" -> getDefaultTemplate user "opendocument"
"markdown_strict" -> getDefaultTemplate user "markdown"