Popularity
5.3
Declining
Activity
0.0
Stable
18
2
0

Monthly Downloads: 14
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Text    

whiskers alternatives and similar packages

Based on the "Text" category.
Alternatively, view whiskers alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of whiskers or a related project?

Add another 'Text' Package

README

whiskers

Mustache templates with Template Haskell.

{-# LANGUAGE QuasiQuotes #-}

import Text.Whiskers

main :: IO ()
main = putStrLn [whiskers|
<!DOCTYPE html>
<html>
    <head>
        <title>Hello, {{ x }}!</title>
    </head>
    <body>
        <h1>This is {{ y }}.</h1>
    </body>
</html>
|] where x = "world"
         y = "whiskers"