Login
Artifact [0618ae2cf3]
Login

Artifact 0618ae2cf37daa3252e42f9b026f17841dc3a77b:


/**
   Works like the tmpl plugin, but passes the file's contents
   throughs s2.tmpl() before returning it.
*/
return {
    cacheIt: false,
    // prefix: uses the defaults
    suffix: ['.tmpl'],
    load: proc(fn){
        return s2.tmpl(s2.Buffer.readFile(fn))
    }
};