10 lines
195 B
JavaScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
const viperHTML = require("viperhtml");
// Returns buffer
module.exports = function(data) {
return viperHTML.wire()`<div>
This is a viper template, ${data.name}
${[data.html]}
</div>`;
};