Skip to content

jgconway/pug-include-glob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

pug-include-glob

Use glob patterns in your Pug include directives.

Installation

$ npm install --save pug-include-glob

Usage

const pugIncludeGlob = require('pug-include-glob');
const pug = require('pug');

let html = pug.renderFile('path/to/template.pug', {
  plugins: [ pugIncludeGlob({ /* options */ }) ]
});

Express

res.render('view_name', { plugins: [ pugIncludeGlob({ /* options */ }) ] })

Gulp

gulp.src(src)
  .pipe(pug({ plugins: [ pugIncludeGlob({ /* options */ }) ] }))
  .pipe(gulp.dest(dest));

Options

  • glob - Options object passed to node-glob methods. See node-glob for details.
  • ignore - Files that should not be checked by this plugin. Checking every file is time expensive so excluding files where possible is likely to improve performance.

License

MIT © Jack Conway

About

Allows glob patterns as paths for includes in Pug templates

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors