Safe Haskell | None |
---|---|
Language | Haskell98 |
A Shakespearean module for general text processing, introducing type-safe, compile-time variable interpolation.
Text templates use the same parser as for other shakespearean templates
which enables variable interpolation using #{..}
. The parser also
recognize the @{..}
and ^{..}
syntax.
If it is necessary that your template produces the output containing one of the interpolation syntax you can escape the sequence using a backslash:
λ> :set -XQuasiQuotes λ> let bar = 23 :: Int in [st|#{bar}|] :: Text
produces "23", but
λ> let bar = 23 :: Int in [st|#\{bar}|] :: Text
returns "#{bar}". The escaping backslash is removed from the output.
Further reading: Shakespearean templates: https://www.yesodweb.com/book/shakespearean-templates
Synopsis
- type TextUrl url = RenderUrl url -> Builder
- class ToText a where
- renderTextUrl :: RenderUrl url -> TextUrl url -> Text
- stext :: QuasiQuoter
- stextFile :: FilePath -> Q Exp
- text :: QuasiQuoter
- textFile :: FilePath -> Q Exp
- textFileDebug :: FilePath -> Q Exp
- textFileReload :: FilePath -> Q Exp
- st :: QuasiQuoter
- lt :: QuasiQuoter
- sbt :: QuasiQuoter
- lbt :: QuasiQuoter
- codegen :: QuasiQuoter
- codegenSt :: QuasiQuoter
- codegenFile :: FilePath -> Q Exp
- codegenFileReload :: FilePath -> Q Exp
Documentation
stext :: QuasiQuoter Source #
stextFile :: FilePath -> Q Exp Source #
Like stext
, but reads an external file at compile-time.
Since: 2.0.22
text :: QuasiQuoter Source #
st :: QuasiQuoter Source #
strict text
lt :: QuasiQuoter Source #
lazy text, same as stext :)
sbt :: QuasiQuoter Source #
strict text whose left edge is aligned with bar ('|')
lbt :: QuasiQuoter Source #
lazy text, whose left edge is aligned with bar ('|') * Yesod code generation
codegen :: QuasiQuoter Source #
codegen is designed for generating Yesod code, including templates So it uses different interpolation characters that won't clash with templates. You can use the normal text quasiquoters to generate code
codegenSt :: QuasiQuoter Source #
Generates strict Text codegen is designed for generating Yesod code, including templates So it uses different interpolation characters that won't clash with templates.