diff options
Diffstat (limited to 'html-test')
-rw-r--r-- | html-test/ref/Bug1054.html (renamed from html-test/ref/Bug387.html) | 54 | ||||
-rw-r--r-- | html-test/src/Bug1054.hs | 5 | ||||
-rw-r--r-- | html-test/src/Bug387.hs | 12 |
3 files changed, 18 insertions, 53 deletions
diff --git a/html-test/ref/Bug387.html b/html-test/ref/Bug1054.html index 12887a83..df3fae0a 100644 --- a/html-test/ref/Bug387.html +++ b/html-test/ref/Bug1054.html @@ -3,7 +3,7 @@ ><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><title - >Bug387</title + >Bug1054</title ><link href="#" rel="stylesheet" type="text/css" title="Linuwial" /><link rel="stylesheet" type="text/css" href="#" /><link rel="stylesheet" type="text/css" href="#" @@ -40,7 +40,7 @@ ></tr ></table ><p class="caption" - >Bug387</p + >Bug1054</p ></div ><div id="table-of-contents" ><div id="contents-list" @@ -49,11 +49,9 @@ ><ul ><li ><a href="#" - >Section1</a - ></li - ><li - ><a href="#" - >Section2</a + >Header with <code + >foo</code + > link</a ></li ></ul ></div @@ -65,49 +63,23 @@ ><ul class="details-toggle" data-details-id="syn" ><li class="src short" ><a href="#" - >test1</a - > :: <a href="#" title="Data.Int" - >Int</a - ></li - ><li class="src short" - ><a href="#" - >test2</a - > :: <a href="#" title="Data.Int" - >Int</a - ></li + >foo</a + > :: ()</li ></ul ></details ></div ><div id="interface" ><a href="#" id="g:1" ><h1 - >Section1<a id="a:section1" - ></a - ></h1 - ></a - ><div class="top" - ><p class="src" - ><a id="v:test1" class="def" - >test1</a - > :: <a href="#" title="Data.Int" - >Int</a - > <a href="#" class="selflink" - >#</a - ></p - ></div - ><a href="#" id="g:2" - ><h1 - >Section2<a id="a:section2" - ></a - ></h1 + >Header with <code + >foo</code + > link</h1 ></a ><div class="top" ><p class="src" - ><a id="v:test2" class="def" - >test2</a - > :: <a href="#" title="Data.Int" - >Int</a - > <a href="#" class="selflink" + ><a id="v:foo" class="def" + >foo</a + > :: () <a href="#" class="selflink" >#</a ></p ></div diff --git a/html-test/src/Bug1054.hs b/html-test/src/Bug1054.hs new file mode 100644 index 00000000..c699f1fb --- /dev/null +++ b/html-test/src/Bug1054.hs @@ -0,0 +1,5 @@ +module Bug1054 where + +-- * Header with 'foo' link + +foo = () diff --git a/html-test/src/Bug387.hs b/html-test/src/Bug387.hs deleted file mode 100644 index d9fed34e..00000000 --- a/html-test/src/Bug387.hs +++ /dev/null @@ -1,12 +0,0 @@ -module Bug387 - ( -- * Section1#a:section1# - test1 - -- * Section2#a:section2# - , test2 - ) where - -test1 :: Int -test1 = 223 - -test2 :: Int -test2 = 42 |