├── .gitignore ├── .npmignore ├── README.md ├── cli.js ├── config.json ├── index.js ├── lib └── util.js ├── package.json └── test └── files ├── baz.ejs ├── baz └── index.ejs ├── css └── main.css ├── foo ├── bar.ejs └── index.ejs ├── img └── hrflp.gif ├── index.ejs ├── templates ├── footer.ejs └── header.ejs └── woo.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | files 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./index') -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/index.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/package.json -------------------------------------------------------------------------------- /test/files/baz.ejs: -------------------------------------------------------------------------------- 1 |
The value of x is <%= _GET.x %>
-------------------------------------------------------------------------------- /test/files/img/hrflp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/test/files/img/hrflp.gif -------------------------------------------------------------------------------- /test/files/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seldo/PNP/HEAD/test/files/index.ejs -------------------------------------------------------------------------------- /test/files/templates/footer.ejs: -------------------------------------------------------------------------------- 1 |