shakespeare-2.0.11.2: A toolkit for making compile-time interpolated templates

Safe HaskellNone
LanguageHaskell98

Text.Lucius

Contents

Synopsis

Parsing

lucius :: QuasiQuoter Source #

>>> renderCss ([lucius|foo{bar:baz}|] undefined)
"foo{bar:baz}"

Mixins

data Mixin Source #

Instances

Runtime

luciusRT' :: Text -> Either String ([(Text, Text)] -> Either String [TopLevel Resolved]) Source #

luciusRTMinified :: Text -> [(Text, Text)] -> Either String Text Source #

Same as luciusRT, but output has no added whitespace.

Since 1.0.3

Mixin

luciusRTMixin Source #

Arguments

:: Text

template

-> Bool

minify?

-> [(Text, RTValue)]

scope

-> Either String Text 

Runtime Lucius with mixin support.

Since 1.0.6

data RTValue Source #

Constructors

RTVRaw Text 
RTVMixin Mixin 

Datatypes

data Css Source #

type CssUrl url = (url -> [(Text, Text)] -> Text) -> Css Source #

Type class

Rendering

renderCssUrl :: (url -> [(Text, Text)] -> Text) -> CssUrl url -> Text Source #

ToCss instances

Color

data Color Source #

Constructors

Color Word8 Word8 Word8 

Instances

Size

mkSize :: String -> ExpQ Source #

Create a CSS size, e.g. $(mkSize "100px").

absoluteSize :: AbsoluteUnit -> Rational -> AbsoluteSize Source #

Constructs AbsoluteSize. Not intended for direct use, see mkSize.

data PercentageSize Source #

Not intended for direct use, see mkSize.

Constructors

PercentageSize 

Fields

percentageSize :: Rational -> PercentageSize Source #

Constructs PercentageSize. Not intended for direct use, see mkSize.

Internal

parseTopLevels :: Parser [TopLevel Unresolved] Source #

luciusUsedIdentifiers :: String -> [(Deref, VarType)] Source #

Determine which identifiers are used by the given template, useful for creating systems like yesod devel.