shakespeare-2.0.6: 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

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

Size

mkSize :: String -> ExpQ Source

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

data AbsoluteUnit Source

Absolute size units.

Constructors

Centimeter 
Inch 
Millimeter 
Pica 
Point 

data AbsoluteSize Source

Not intended for direct use, see mkSize.

Constructors

AbsoluteSize 

Fields

absoluteSizeUnit :: AbsoluteUnit

Units used for text formatting.

absoluteSizeValue :: Rational

Normalized value in centimeters.

absoluteSize :: AbsoluteUnit -> Rational -> AbsoluteSize Source

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

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.