This package has been deprecated

Author message:

jade-code-gen will be unpublished soon, please use pug-code-gen

jade-code-gen

0.0.4 • Public • Published

jade-code-gen

Default code-generator for jade. It generates HTML via a JavaScript template function.

Build Status Dependency Status NPM version

Installation

npm install jade-code-gen

Usage

var generateCode = require('jade-code-gen');

generateCode(ast, options)

Generate a JavaScript function string for the given AST.

ast is a fully expanded AST for Jade, with all inclusion, extends, and filters resolved.

options may contain the following properties that have the same meaning as the options with the same names in jade:

  • pretty (boolean): default is false
  • compileDebug (boolean): default is false
  • doctype (string): default is undefined
  • inlineRuntimeFunctions (boolean): default is false
  • globals (array of strings): default is []
  • self (boolean): default is false

In addition to above, jade-code-gen has the following unique options:

  • includeSources (object): map of filename to source string; used if compileDebug is true; default is undefined
  • templateName (string): the name of the generated function; default is 'template'
var lex = require('jade-lexer');
var parse = require('jade-parser');
var generateCode = require('jade-code-gen');
 
var funcStr = generateCode(parse(lex('p Hello world!')), {
  compileDebug: false,
  pretty: true,
  inlineRuntimeFunctions: false,
  templateName: 'helloWorld'
});
 
var func = Function('locals', funcStr);
func();
//=> '\n<p>Hello world!</p>'

new generateCode.CodeGenerator(ast, options)

The constructor for the internal class of the code generator. You shouldn't need to use this for most purposes.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i jade-code-gen

Weekly Downloads

1

Version

0.0.4

License

MIT

Last publish

Collaborators

  • alubbe
  • bloodyowl
  • forbeslindesay
  • jbnicolai
  • timothygu