GrauKatze 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
..
lib 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
node_modules 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
CHANGELOG.md 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
LICENSE 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
README.md 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
index.js 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás
package.json 05f70669c9 Сконфигурирована и подготовлена база для проекта 2 anos atrás

README.md

pug-filters

Code for processing filters in pug templates

Build Status Dependencies Status DevDependencies Status NPM version

Installation

npm install pug-filters

Usage

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

filters.handleFilters(ast, filters)

Renders all Filter nodes in a Pug 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