[Make http:// url's come out directly
Neil Mitchell **20051212172443] {
hunk ./src/Web/Main.hs 170
-showTags (Tag "a" x) = "" ++ showTags x ++ ""
+showTags (Tag "a" x) = "" ++ showTags x ++ ""
+ where
+ url = if "http://" `isPrefixOf` txt then txt else "?q=" ++ escape txt
+ txt = showText x
+
}