0.0.0 • Published 10 years ago

walker-jade v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Walker Jade

jade plugin for normalize-walker.

Options

  • dependencies.jade - The version of jade to use, defaulting to *

Transformations

.jade.js

Convert .jade templates to a function.

module template from 'template.jade.js'

var html = template({
  username: 'me'
})

.jade.html...

Compile .jade files to HTML. With .js at the end, compiles it to JS string.

As a string:

module html from 'template.jade.html.js'

document.body.insertAdjacentHTML('afterend', html)

With other transforms:

module Template from 'template.jade.html.domify.js'

var el = Template.cloneNode(true)
document.body.appendChild(el)