Popularity
7.5
Stable
Activity
0.0
Stable
23
3
11
Monthly Downloads: 11
Programming language: Haskell
License: MIT License
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.
-
hakyll-dir-list
Hakyll extension which supports the creation of hierarchical menus from source files in directories and single page sites.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of hakyll-sass or a related project?
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
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)