diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-11-21 14:08:14 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2017-11-21 14:08:14 +0300 |
commit | 1b970cca13ec6f5ace72dedd1df81fdaf1b9ad8b (patch) | |
tree | 772851b5313837f0d35b023aa4144f34087cd1b1 /src/Text | |
parent | 773d6a17da6dc4306d266e89ba8a22479140a07d (diff) | |
download | pandoc-1b970cca13ec6f5ace72dedd1df81fdaf1b9ad8b.tar.gz |
Recognize ".muse" file extension
Diffstat (limited to 'src/Text')
-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" |