2017-02-09 14:34:55 -08:00

15 lines
386 B
JavaScript

var marko_template = module.exports = require("marko/html").t(__filename),
marko_helpers = require("marko/runtime/html/helpers"),
marko_forEach = marko_helpers.f,
marko_escapeXml = marko_helpers.x;
function render(input, out) {
marko_forEach(data.colors, function(color) {
out.w(marko_escapeXml(color));
});
}
marko_template._ = render;
marko_template.meta = {};