summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-15 03:07:26 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-15 03:07:26 +0000
commit8f473af610a293666ea7981b587f3a0520d23838 (patch)
treed9f9d2cdf38984355a7bbe76282c36c5d881a82d /src/Main.hs
parentdbd5c449070d457f6b39725e328aa37e44632bf0 (diff)
If output file has .ctx or .context extension,
assume it is ConTeXt format unless otherwise specified. git-svn-id: https://pandoc.googlecode.com/svn/trunk@720 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 88870b6a4..3272463dc 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -338,6 +338,8 @@ defaultWriterName x =
Just ["tex"] -> "latex"
Just ["latex"] -> "latex"
Just ["ltx"] -> "latex"
+ Just ["context"] -> "context"
+ Just ["ctx"] -> "context"
Just ["rtf"] -> "rtf"
Just ["rst"] -> "rst"
Just ["s5"] -> "s5"