diff options
-rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index b2394e142..d9f92335c 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -753,6 +753,7 @@ defaultReaderName fallback (x:xs) = ".htm" -> "html" ".md" -> "markdown" ".markdown" -> "markdown" + ".muse" -> "muse" ".tex" -> "latex" ".latex" -> "latex" ".ltx" -> "latex" @@ -793,6 +794,7 @@ defaultWriterName x = ".txt" -> "markdown" ".text" -> "markdown" ".md" -> "markdown" + ".muse" -> "muse" ".markdown" -> "markdown" ".textile" -> "textile" ".lhs" -> "markdown+lhs" |