From 1b970cca13ec6f5ace72dedd1df81fdaf1b9ad8b Mon Sep 17 00:00:00 2001
From: Alexander Krotov <ilabdsf@gmail.com>
Date: Tue, 21 Nov 2017 14:08:14 +0300
Subject: Recognize ".muse" file extension

---
 src/Text/Pandoc/App.hs | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'src/Text')

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"
-- 
cgit v1.2.3