In Hamlet, how does one uses the result of an IO operation inside #{...}
?
For instance :
someIO :: IO String
-----------------
$with stuff <- someIO
<p>#{stuff}
Fails with
No instance for (blaze-markup-0.6.0.0:Text.Blaze.ToMarkup
(IO String))
arising from a use of `toHtml'
I fear that I have not approached the problem from the right angle, could someone shed some light on this issue for me?
Thank you