Popularity
7.3
Growing
Activity
0.0
Stable
21
2
9
Monthly Downloads: 24
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-elm
Hakyll wrapper for the Elm (http://elm-lang.org) compiler -
hakyll-contrib
Extra pre-made configurations and useful modules for hakyll -
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.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
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)