docpad-archive / docpad-plugin-jade

Adds support for the Jade templating engine to DocPad.
Other
17 stars 8 forks source link

Sending Locals with Docpad API #5

Open Rolilink opened 11 years ago

Rolilink commented 11 years ago

Is a good idea to send some locals to the plugin Via the Docpad API, something i need to do requires the use of some javascript mixins and i cant send it when serving the document on express.

tried this:

docpadInstance.serveDocument({
    document: document,
    req: req,
    res: res,
    next: next,
    locals:{
       val:rval
     }
});