0.0.2 • Published 8 years ago

pug-source-gen v0.0.2

Weekly downloads
2,898
License
MIT
Repository
github
Last release
8 years ago

pug-source-gen

Generate Pug sources from a Pug AST. The resultant source may be different from the original Pug source, but the rendered output should be the same.

Build Status Dependency Status NPM version

Installation

npm install pug-source-gen

Usage

var lex = require('pug-lexer');
var parse = require('pug-parser');
var genSource = require('pug-source-gen');

var source = `
include a

mixin myMixin(arg)
  block
  p&attributes(attributes) Paragraph: #[strong= arg]

html
  head
  body
    p.klass(attr falseattr=false class=['myClass']) Introduction
    +myMixin('Content').klass2
      h1 Heading
`;
var ast = parse(lex(source));

var generatedSource = genSource(ast);
// =>
// include a
// mixin myMixin(arg)
//   block
//   p&attributes(attributes) Paragraph: #[strong= arg]
// html
//   head
//   body
//     p.klass(attr falseattr=false class=['myClass']) Introduction
//     +myMixin('Content').klass2
//       h1 Heading

License

MIT