Popularity
7.5
Growing
Activity
0.0
Stable
22
3
11

Monthly Downloads: 30
Programming language: Haskell
License: MIT License
Tags: Web     Hakyll    

hakyll-sass alternatives and similar packages

Based on the "hakyll" category.
Alternatively, view hakyll-sass alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of hakyll-sass or a related project?

Add another 'hakyll' Package

README

Hakyll SASS

A library for Hakyll providing a compiler for SASS using hsass. This package can be found on Hackage under hakyll-sass.

To install, run the following command:

cabal install hakyll-sass

Build Status

Master: Build Status Develop: Build Status

Usage Instructions

To use in a Hakyll project, do something similar to the following:

SASS file - css/default.sass:

.example
    border: solid 1px #000000

HTML file - templates/default.html:

<link rel="stylesheet" href="/css/default.css" />
<div class="example">Example</div>

Haskell file - site.hs:

import Hakyll.Web.Sass (sassCompiler)

main = hakyll $ do
    match "css/*.sass" $ do
        route $ setExtension "css"
        let compressCssItem = fmap compressCss
        compile (compressCssItem <$> sassCompiler)