JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2009298
  • Score
    100M100P100Q205955F
  • License MIT

Code for processing filters in jade templates

Package Exports

  • pug-filters

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pug-filters) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jade-filters

Code for processing filters in jade templates

Build Status Dependency Status NPM version

Installation

npm install jade-filters

Usage

var filters = require('jade-filters');

filters.handleFilters(ast, filters)

Renders all Filter nodes in a Jade AST (ast), using user-specified filters (filters) or a JSTransformer.

filters.runFilter(name, str[, options[, currentDirectory]])

Invokes filter through jstransformer.

This is internally used in filters.handleFilters, and is a lower-level interface exclusively for invoking JSTransformer-based filters.

name represents the name of the JSTransformer.

str represents the string to render.

currentDirectory is used when attempting to require the transformer module.

options may contain the following properties:

  • minify (boolean): whether or not to attempt minifying the result from the transformer. If minification fails, the original result is returned.

License

MIT