Created
May 8, 2018 10:32
-
-
Save ncaq/f8133e14fe64f68f99738c1cd647d0c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE QuasiQuotes #-} | |
import Text.Blaze.Html.Renderer.Pretty (renderHtml) | |
import Text.Hamlet | |
data MyRoute = Home | |
render :: Render MyRoute | |
render Home _ = "/home" | |
main :: IO () | |
main = print $ renderHtml $ (\url -> [hamlet|foo @{url}|]) Home render |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment