module LWN.Article where import XHTML data Article = Article { title :: String, byline :: String, body_html :: String } instance XHTML Article where to_xhtml (Article t bl b) = "

" ++ t ++ "

\n\n" ++ "

" ++ bl ++ "

\n\n" ++ b