diff options
author | davve <davve@dtek.chalmers.se> | 2006-07-30 21:01:57 +0000 |
---|---|---|
committer | davve <davve@dtek.chalmers.se> | 2006-07-30 21:01:57 +0000 |
commit | 7e00d4646b0ab3694cee32752d2a8bac04317446 (patch) | |
tree | 51aa4eaf5dede3de999e1ac6c63c53c1a1587bfe /src/HaddockHH2.hs | |
parent | c3f8f4f1ab6ef0e0ba46e838055c938c061b6161 (diff) |
Start porting the Html renderer
Diffstat (limited to 'src/HaddockHH2.hs')
-rw-r--r-- | src/HaddockHH2.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/HaddockHH2.hs b/src/HaddockHH2.hs index c4804190..c329e254 100644 --- a/src/HaddockHH2.hs +++ b/src/HaddockHH2.hs @@ -1,5 +1,11 @@ module HaddockHH2(ppHH2Contents, ppHH2Index, ppHH2Files, ppHH2Collection) where +ppHH2Contents = error "not yet" +ppHH2Index = error "not yet" +ppHH2Files = error "not yet" +ppHH2Collection = error "not yet" + +{- import HaddockModuleTree import HaddockTypes import HaddockUtil @@ -173,3 +179,4 @@ ppHH2Collection odir doctitle maybe_package = do text "<ItemMoniker Name=\"!SampleInfo\" ProgId=\"HxDs.HxSampleCollection\" InitData=\"\"/>") $$ text "</HelpCollection>" writeFile (pathJoin [odir, collectionHH2File]) (render doc) +-} |