change visual appearance of links in html
[wix.git] / src / Doc.lhs
index a36d367..ab1418f 100644 (file)
@@ -4,7 +4,7 @@ where
 import Numeric
 import Data.Bits
 import Data.Char
-import SBP
+import Edu_Berkeley_Sbp_Haskell_SBP
 import Util
 import FromTree
 import qualified Text.PrettyPrint.Leijen as PP
@@ -118,7 +118,7 @@ unindent (Tree "I" indent _) v = unindent' ((length indent)+1) v
 
 instance FromTree [Text] where
   fromTree (Tree "Word"    chars       _) = [Chars              $ concatMap fromTree chars]
-  fromTree (Tree "Ordinal" x           _) = [Command "ordinal"  $ [Chars (show x)]]
+  fromTree (Tree "Ordinal" x           _) = [Command "ordinal"  $ [Chars $ concatMap show x]]
   fromTree (Tree "Fraction" [n,d]      _) = [Command "fraction" $ [(Chars (show n)), (Chars (show d))]]
   fromTree (Tree "WS"     _            _) = [WS]
   fromTree (Tree "Quotes" [x]          _) = [Quotes $ fromTree x]