Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
Documentation
cssResetEmbed :: ByteString Source #
Default CSS to remove unintuitive default styles. This or cssResetLink
is required.
import Data.String.Interpolate (i) toDocument :: Text -> Text toDocument cnt = [i|<html> <head> <style type="text/css">#{cssResetEmbed}</style> </head> <body>#{cnt}</body> </html>|]
cssResetLink :: Text Source #
Alternatively, the reset is available as on a CDN
import Data.String.Interpolate (i) toDocument :: Text -> Text toDocument cnt = [i|<html> <head> <link rel="stylesheet" href="#{cssResetEmbed}"> </head> <body>#{cnt}</body> </html>|]