Popularity
7.5
Declining
Activity
0.0
Stable
25
2
11
Monthly Downloads: 1
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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

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)