Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Templating packages for Haskell

What are some preferred packages for templating in Haskell. Something similar to Django Templates, or PHP.

I don't want to always use it with HTML. It can be any other thing. I guess what I want is a string interpolation library, that also supports loops, registration of filter/escape utilities, if conditions, etc.

like image 203
Ionuț G. Stan Avatar asked Apr 24 '11 11:04

Ionuț G. Stan


1 Answers

Some related packages:

  • Bravo - Static text template generation library
  • chunks - Simple template library with static safety
  • halipeto - Haskell Static Web Page Generator
  • hamlet - Haml-like template files that are compile-time checked
  • hastache - Haskell implementation of Mustache templates
  • heist - An xhtml templating system
  • HStringTemplate - StringTemplate implementation in Haskell.
  • Interpolation - Multiline strings, interpolation and templating.
  • PCLT - Extension to Show: templating, catalogizing, languages, parameters, etc.
  • press - Text template library targeted at the web / HTML generation
  • template - Simple string substitution
  • twine - very simple template language
like image 84
Simon Michael Avatar answered Sep 23 '22 02:09

Simon Michael