Popularity
7.2
Stable
Activity
0.0
Stable
20
2
8
Monthly Downloads: 16
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-shortcut-links
✂️ Hakyll shortcut-links in markdown files -
hakyll-contrib
Extra pre-made configurations and useful modules for hakyll -
hakyll-elm
Hakyll wrapper for the Elm (http://elm-lang.org) compiler -
hakyll-dir-list
Hakyll extension which supports the creation of hierarchical menus from source files in directories and single page sites. -
hakyll-shortcode
WordPress-style shortcodes for Hakyll sites. -
hakyll-typescript
Typescript and Javascript Hakyll Compilers -
hakyll-process
Hakyll compiler for arbitrary external processes.
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.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)