rebolyte / metalsmith-stylus

Stylus plugin for Metalsmith

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

metalsmith-stylus

Build Status Dependency Status

A Stylus plugin for Metalsmith.

Installation

npm install --save metalsmith-stylus

Getting Started

If you haven't checked out Metalsmith before, head over to their website and check out the documentation.

CLI Usage

If you are using the command-line version of Metalsmith, you can install via npm, and then add the metalsmith-stylus key to your metalsmith.json file:

{
  "plugins": {
    "metalsmith-stylus": {}
  }
}

JavaScript API

If you are using the JS Api for Metalsmith, then you can require the module and add it to your .use() directives:

var stylus = require('metalsmith-stylus');

metalsmith.use(stylus());

or

metalsmith.use(stylus({ use: axis() }));

or

metalsmith.use(stylus({ use: [ axis(), jeet(), rupture() ] }));

Options

None yet

About

Stylus plugin for Metalsmith


Languages

Language:JavaScript 100.0%