Website/node_modules/metalsmith-branch
2015-12-03 09:45:33 -05:00
..
lib Starting to import site elements 2015-12-03 09:45:33 -05:00
node_modules Starting to import site elements 2015-12-03 09:45:33 -05:00
test Starting to import site elements 2015-12-03 09:45:33 -05:00
.npmignore Starting to import site elements 2015-12-03 09:45:33 -05:00
package.json Starting to import site elements 2015-12-03 09:45:33 -05:00
Readme.md Starting to import site elements 2015-12-03 09:45:33 -05:00
three.html Starting to import site elements 2015-12-03 09:45:33 -05:00
two.md Starting to import site elements 2015-12-03 09:45:33 -05:00

metalsmith-branch

A metalsmith plugin to run separate middleware pipelines on selected files.

Facilitates 'declarative' pipelines by file pattern or filter, since it means each plugin doesn't have to implement its own filtering. See examples below.

April 2014: Please bear in mind that this is 0.0.x software and use with caution, especially since metalsmith itself is likely to change.

Installation

$ npm install metalsmith-branch

Usage

In your build file:

var branch = require('metalsmith-branch')

metalsmith
  .use( branch()
          .pattern('*.md')        // for only md source files,
          .use( templates({       // run through swig template engine
                  engine: "swig",
                  inPlace: true
                })
          )
          .use( markdown() )      // and generate html
      )

// you can also specify the pattern directly in constructor

metalsmith
  .use( branch('images/*') 
          .use( imageVariants() )
      )

// or select files by function of their name, properties, and order:

var lastweek = function(filename,props,i){
  var dt = new Date()
    , last = new Date( dt.getFullYear(), dt.getMonth(), dt.getDate());
  last.setDate( last.getDate() - 6 )
  return ( props.published >= last );
}

metalsmith
  .use( branch( lastweek )
          .use( tagLatest() )
      )

Note that nested branches are possible too.

// to post-process only markdown-sourced files in a 'special' dir:

metalsmith
  .use( branch('*.md')
          .use( markdown() )
          .use( branch('special/*.html')
                  .use( postProcess() )
              )
      )

License

MIT