aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/Bug201.hs
diff options
context:
space:
mode:
Diffstat (limited to 'html-test/src/Bug201.hs')
-rw-r--r--html-test/src/Bug201.hs28
1 files changed, 28 insertions, 0 deletions
diff --git a/html-test/src/Bug201.hs b/html-test/src/Bug201.hs
new file mode 100644
index 00000000..bf6cb9a9
--- /dev/null
+++ b/html-test/src/Bug201.hs
@@ -0,0 +1,28 @@
+-- We test that leading whitespace gets properly dropped (or not!)
+-- from codeblocks
+module Bug201 where
+
+-- |
+-- @
+-- This leading whitespace
+-- should be dropped
+-- @
+f :: ()
+f = ()
+
+{-|
+@
+ But this one
+ should not
+@
+
+> this should
+> be dropped
+
+@
+ and so should this
+ because there's a space before closing @
+ @
+-}
+g :: ()
+g = ()