shakespeare

A toolkit for making compile-time interpolated templates

http://www.yesodweb.com/book/shakespearean-templates

Version on this page:2.0.12.1
LTS Haskell 22.13:2.1.0.1
Stackage Nightly 2024-03-14:2.1.0.1
Latest on Hackage:2.1.0.1

See all snapshots shakespeare appears in

MIT licensed and maintained by Michael Snoyman
This version can be pinned in stack with:shakespeare-2.0.12.1@sha256:bc5c856b2e486ddf57bed4ac0b5829483a829bb8c94d5d425aebdce59ded8fd5,4790

Shakespeare is a family of type-safe, efficient template languages. Shakespeare templates are expanded at compile-time, ensuring that all interpolated variables are in scope. Variables are interpolated according to their type through a typeclass.

Shakespeare templates can be used inline with a quasi-quoter or in an external file.

Note there is no dependency on haskell-src-extras. Instead Shakespeare believes logic should stay out of templates and has its own minimal Haskell parser.

Packages that use this: xml-hamlet

Please see the documentation at http://www.yesodweb.com/book/shakespearean-templates for more details.

Changes

2.0.12.1

  • New contentHash parser breaks hash hrefs #200

2.0.12

  • Parser fails without space between class and ID (Hamlet) #197

2.0.11.2

  • Support for template-haskell 2.12.0 #196

2.0.11.1

  • Handle parsing of trailing semicolon after mixins #194

2.0.11

  • Export hamletFromString #191

2.0.10

  • Added ixhamlet #177

2.0.9

  • Better empty HTML tag list

2.0.8.1

  • Make it work with ghc-8.0 #181

2.0.8

  • Improve docs in Text.Hamlet #180

2.0.7

  • Include aeson’s JSON encoding and escape <, > and & to avoid XSS attacks

2.0.6

  • Provide the Text.Hamlet.Runtime module

2.0.5

  • Drop system-filepath

2.0.4.1

Fix build for GHC 7.10 #151

2.0.4

2.0.3

  • cassiusMixin added

2.0.2.2

GHC 7.10 support

shakesepare 2.0.2

shakespeare-i18n supports message directories.

Hamlet 0.5.0 (August 29, 2010)

  • Use can use parantheses when referencing variables. This allows you to have functions applied to multiple arguments.

  • Added the hamlet’ and xhamlet’ quasiquoters for generating plain Html values.

  • Added runtime Hamlet support.

  • Added “file debug” support. This is a mode that is a drop-in replacement for external files compiled via template haskell. However, this mode also has a runtime component, in that is reads your templates at runtime, thus avoiding the need to a recompile for each template change. This takes a runtime hit obviously, so it’s recommended that you switch back to the compile-time templates for production systems.

  • Added the Cassius and Julius template languages for CSS and Javascript, respectively. The former is white-space sensitive, whereas the latter is just a passthrough for raw Javascript code. The big feature in both of them is that they support variable interpolation just like Hamlet does.

New in Hamlet 0.4.0

  • Internal template parsing is now done via Parsec. This opened the doors for the other changes mentioned below, but also hopefully gives more meaningful error messages. There’s absolutely no runtime performance hit for this change, since all parsing is done at compile time, and if there is any compile-time hit, it’s too negligible to be noticed.

  • Attribute values can now be quoted. This allows you to embed spaces, periods and pounds in an attribute value. For example: [$hamlet|%input!type=submit!value=“Add new value”|].

  • Space-delimited references in addition to period-delimited ones. This only applies to references in content, not in statements. For example, you could write [$hamlet|$foo bar baz$|].

  • Dollar-sign interpolation is now polymorphic, based on the ToHtml typeclass. You can now do away with $string.var$ and simply type $var$. Currently, the ToHtml typeclass is not exposed, and it only provides instances for String and Html, though this is open for discussion.

  • Added hamletFile and xhamletFile which loads a Hamlet template from an external file. The file is parsed at compile time, just like a quasi-quoted template, and must be UTF-8 encoded. Additionally, be warned that the compiler won’t automatically know to recompile a module if the template file gets changed.