[Haskell-beginners] Text.Xhtml.Table problems, with a very simple table
Tom Murphy
amindfv at gmail.com
Mon Jun 20 21:26:47 CEST 2011
On 6/20/11, David McBride <dmcbride at neondsl.com> wrote:
> I think you have it backwards. <-> is above and </> is beside.
No, I think </> is above:
(http://hackage.haskell.org/packages/archive/xhtml/3000.2.0.1/doc/html/src/Text-XHtml-Table.html#%3C%2F%3E)
>
> triTable a1 a2 b = table << a1 `above` a2 `beside` b
>
> seems to work for me, but you can add parenthesis around the a's to
> make it more clear.
>
For some reason, it's not working for me. The input:
triTable (toHtml $ "1") (toHtml $ "2") (toHtml $ "3")
results in:
"<table
><tr
>13</tr
><tr
>2</tr
></table
>"
even when I just set it up as a "let" in GHCi.
Thanks,
Tom
More information about the Beginners
mailing list