Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/khalidhoffman/pug-php-filter

php filter for pug
https://github.com/khalidhoffman/pug-php-filter

pug

Last synced: 3 months ago
JSON representation

php filter for pug

Awesome Lists containing this project

README

        

# pug-php-filter

## What it does

`pug-php-filter` provides a pug php filter

```
:php
echo "hello world";
```
renders:

```

```

## How to use

Here's an example:

```
var pug = require('pug'),
pugPHPFilter = require('pug-php-filter');

pug.renderFile('path/to/pug/file', {
filters: {
php: pugPHPFilter
}
});

```