hakyll-dhall-0.1.0.0: app/test-app.hs
{-# LANGUAGE OverloadedStrings #-}
import Dhall
import Hakyll
import Hakyll.Web.Dhall
main :: IO ()
main = hakyll $ do
match "test-dhall/**" $ do
route idRoute
compile dhallFullCompiler
create ["testparse.txt"] $ do
route idRoute
compile $ loadDhall (auto :: Type String) "test-dhall/parse-test.dhall"