Forbes Lindesay
Forbes Lindesay
cool, I think that's all the functionality settled then?
Will do
No, define-form doesn't support nested names. I don't think there's any easy way to do so.
Surely layout just involves having a new RenderFileForExpress method that looks like: ``` javascript renderFile(fileName, options,function(err,result){ if(err) return cb(err); options.body = result; renderFile('layout.ejs', options, cb); }); ``` Partials would just...
The way I implimented it in my fork of EJS (called QEJS) was to give the templates two local functions. These could be includes and extends. includes renders a child...
Yeh, I got round the problem by supporting asynchronous operations in the template, but I think doing it at compile time is probably much more efficient. I'm just proposing that...
Sounds good to me.
Yep, simple, you have to add the `filename` option when you call the method to render the EJS or use `renderFile` rather than `render`. This is either a bug in...
There are no added limitations from `@databases`, so if SQLite says it's ok, it should be ok. We should update the documentation to remove this note.