From 67b38fac641ab3cc2ac0e430262ed45153d1b91c Mon Sep 17 00:00:00 2001
From: David Lazar <lazar6@illinois.edu>
Date: Thu, 4 Apr 2013 23:11:43 -0700
Subject: [PATCH] Haddock reader: leaving Space alone in @...@ seems more
 semantically correct.

---
 src/Text/Pandoc/Readers/Haddock/Parse.y | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/Text/Pandoc/Readers/Haddock/Parse.y b/src/Text/Pandoc/Readers/Haddock/Parse.y
index e34f9d95e..1486106b7 100644
--- a/src/Text/Pandoc/Readers/Haddock/Parse.y
+++ b/src/Text/Pandoc/Readers/Haddock/Parse.y
@@ -139,7 +139,6 @@ monospace :: Inlines -> Inlines
 monospace = everywhere (mkT go)
   where
     go (Str s) = Code nullAttr s
-    go Space = Code nullAttr " "
     go x = x
 
 -- | Create a `Hyperlink` from given string.