diff options
author | David Lazar <lazar6@illinois.edu> | 2013-04-04 23:11:43 -0700 |
---|---|---|
committer | David Lazar <lazar6@illinois.edu> | 2013-04-04 23:11:43 -0700 |
commit | 67b38fac641ab3cc2ac0e430262ed45153d1b91c (patch) | |
tree | f397ad7f6f9c030a8cc663399c7e48049e5322ed /src | |
parent | 100f8df43eb2dcef9ccbc02fbcca576d77467740 (diff) | |
download | pandoc-67b38fac641ab3cc2ac0e430262ed45153d1b91c.tar.gz |
Haddock reader: leaving Space alone in @...@ seems more semantically correct.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/Haddock/Parse.y | 1 |
1 files changed, 0 insertions, 1 deletions
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. |