aboutsummaryrefslogtreecommitdiff
path: root/src/pandoc.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/pandoc.hs')
-rw-r--r--src/pandoc.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index f73391b6b..0cf694873 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -86,6 +86,7 @@ readers = [("native" , readPandoc)
,("markdown" , readMarkdown)
,("markdown+lhs" , readMarkdown)
,("rst" , readRST)
+ ,("textile" , readTextile) -- TODO : textile+lhs
,("rst+lhs" , readRST)
,("html" , readHtml)
,("latex" , readLaTeX)
@@ -581,6 +582,7 @@ defaultReaderName fallback (x:xs) =
".ltx" -> "latex"
".rst" -> "rst"
".lhs" -> "markdown+lhs"
+ ".textile" -> "textile"
".native" -> "native"
_ -> defaultReaderName fallback xs