diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-12-03 22:15:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-03 23:10:52 -0800 |
commit | 55e43c49916e55c4fec9a6783590b9574a183bf9 (patch) | |
tree | 91585b03c4c7bb76b18db45599062a02228a9b15 | |
parent | 968748dec1a913a1c48fc6d99d2ba37d3d7fe280 (diff) | |
download | pandoc-55e43c49916e55c4fec9a6783590b9574a183bf9.tar.gz |
Use textile reader by default for .textile extension.
-rw-r--r-- | src/pandoc.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs index 647649a3c..4c38a0dc7 100644 --- a/src/pandoc.hs +++ b/src/pandoc.hs @@ -592,6 +592,7 @@ defaultReaderName fallback (x:xs) = ".ltx" -> "latex" ".rst" -> "rst" ".lhs" -> "markdown+lhs" + ".textile" -> "textile" ".native" -> "native" _ -> defaultReaderName fallback xs |